Guest User

Untitled

a guest
May 2nd, 2012
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public function indexAction()
  2. {
  3. $this->authoriseUser();
  4. $this->view->assign('title', 'Clubs');
  5. $this->view->headTitle($this->view->title, 'PREPEND');
  6. $clubs = new Application_Model_DbTable_Clubs();
  7. $this->view->clubs = $clubs->fetchAll();
  8. $select = $clubs->select();
  9. $select->order('club_name ASC');
  10. }
Advertisement
Add Comment
Please, Sign In to add comment