openrat-cms

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

UsergroupEditAction.class.php (888B)


      1 <?php
      2 namespace cms\ui\action\usergroup;
      3 use cms\action\Method;
      4 use cms\model\User;
      5 use cms\ui\action\IndexAction;
      6 use cms\ui\themes\ThemeStyle;
      7 use language\Messages;
      8 use util\Html;
      9 use util\Session;
     10 use util\UIUtils;
     11 use cms\base\Configuration as C;
     12 use cms\action\RequestParams;
     13 use cms\auth\Auth;
     14 use cms\auth\AuthRunner;
     15 use cms\base\Configuration;
     16 use cms\base\Startup;
     17 use cms\model\BaseObject;
     18 use cms\model\Project;
     19 use cms\model\Value;
     20 use cms\ui\themes\Theme;
     21 use Exception;
     22 use util\json\JSON;
     23 use logger\Logger;
     24 use util\Less;
     25 use \util\exception\ObjectNotFoundException;
     26 
     27 /**
     28  * Simple action to display a navigation.
     29  *
     30  * @package cms\ui\action\index
     31  */
     32 class UsergroupEditAction extends IndexAction implements Method {
     33 
     34     public function view() {
     35 		// no data is needed to display the template.
     36     }
     37 
     38 
     39     public function post() {
     40     	// no data is written.
     41     }
     42 }