Craft\AmForms_FormElementType::getSources PHP Method

getSources() public method

Returns this element type's sources.
public getSources ( string | null $context = null ) : array | false
$context string | null
return array | false
    public function getSources($context = null)
    {
        $sources = array('*' => array('label' => Craft::t('All forms')));
        return $sources;
    }