openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

GroupListingAction.class.php (420B)


      1 <?php
      2 namespace cms\action\group;
      3 use cms\action\GroupAction;
      4 use cms\action\Method;
      5 use cms\model\Group;
      6 
      7 class GroupListingAction extends GroupAction implements Method {
      8     public function view() {
      9 		$list = array();
     10 
     11 		foreach( Group::getAll() as $id=>$name )
     12 		{
     13 			$list[$id]         = array();
     14 			$list[$id]['name'] = $name;
     15 		}
     16 
     17 		$this->setTemplateVar('el',	$list);
     18     }
     19 
     20 
     21     public function post() {
     22     }
     23 }