Created
June 24, 2012 22:39
-
-
Save kokx/2985340 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace User\Form; | |
use Zend\Form\Form, | |
Zend\Form\Element; | |
class Register extends Form | |
{ | |
/** | |
* Prepare the elements. | |
*/ | |
public function prepareElements() | |
{ | |
$this->add(array( | |
'name' => 'name', | |
'attributes' => array( | |
'type' => 'text', | |
'label' => 'Your name' | |
) | |
)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment