Craft\AmForms_EmailFieldType::getInputHtml PHP Method

getInputHtml() public method

public getInputHtml ( string $name, mixed $value ) : string
$name string
$value mixed
return string
    public function getInputHtml($name, $value)
    {
        return craft()->templates->render('_components/fieldtypes/PlainText/input', array('name' => $name, 'value' => $value, 'settings' => $this->getSettings(), 'type' => 'email'));
    }