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

Last commit: Sat Feb 13 22:36:08 2021 +0100	Jan Dankert	New: 'edit'-Subactions for users and groups.
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 }
Download modules/cms/action/group/GroupEditAction.class.php
History Sat, 13 Feb 2021 22:36:08 +0100 Jan Dankert New: 'edit'-Subactions for users and groups.