Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public function indexAction()
- {
- $this->authoriseUser();
- $this->view->assign('title', 'Clubs');
- $this->view->headTitle($this->view->title, 'PREPEND');
- $clubs = new Application_Model_DbTable_Clubs();
- $this->view->clubs = $clubs->fetchAll();
- $select = $clubs->select();
- $select->order('club_name ASC');
- }
Advertisement
Add Comment
Please, Sign In to add comment