File modules/cms/action/group/GroupInfoAction.class.php

Last commit: Tue Nov 17 23:51:00 2020 +0100	Jan Dankert	Refactoring: Every Actionmethod has now its own class.
1 <?php 2 namespace cms\action\group; 3 use cms\action\GroupAction; 4 use cms\action\Method; 5 6 class GroupInfoAction 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 }
Download modules/cms/action/group/GroupInfoAction.class.php
History Tue, 17 Nov 2020 23:51:00 +0100 Jan Dankert Refactoring: Every Actionmethod has now its own class.