File modules/cms/action/profile/ProfileMembershipsAction.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\profile; 3 use cms\action\Method; 4 use cms\action\ProfileAction; 5 6 7 class ProfileMembershipsAction extends ProfileAction implements Method { 8 public function view() { 9 $this->setTemplateVar( 'groups',$this->user->getGroups() ); 10 } 11 public function post() { 12 } 13 }
Download modules/cms/action/profile/ProfileMembershipsAction.class.php
History Tue, 17 Nov 2020 23:51:00 +0100 Jan Dankert Refactoring: Every Actionmethod has now its own class.