openrat-cms

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

GroupEditAction.class.php (342B)


      1 <?php
      2 namespace cms\action\group;
      3 use cms\action\GroupAction;
      4 use cms\action\Method;
      5 
      6 class GroupEditAction extends GroupAction implements Method {
      7     public function view() {
      8 		$this->setTemplateVars( $this->group->getProperties() );
      9 		$this->setTemplateVar( 'users',$this->group->getUsers() );
     10     }
     11 
     12 
     13     public function post() {
     14     }
     15 }