for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Moo_EditableFieldEmail is an object representing email field created by CMS admin.
*
* @package editablefield
* @author Mohamed Alsharaf <[email protected]>
*/
class Moo_EditableFieldEmail extends Moo_EditableField
{
private static $singular_name = 'Email Field';
private static $plural_name = 'Email Fields';
protected function initFormField()
return new EmailField($this->Name, $this->Title);
}