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 | |
| class Application_Form_Users extends Zend_Form | |
| { | |
| public function init() | |
| { | |
| $this->setName('users'); | |
| $id = new Zend_Form_Element_Hidden('id'); | |
| $id->addFilter('Int'); |
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 | |
| class UsersController extends Np_CustomController | |
| { | |
| public function listAction() | |
| { | |
| $db = Zend_Db_Table::getDefaultAdapter(); | |
| $select = $db->select() | |
| ->from(array('Users' => 'users')); |