openrat-cms

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

UsergroupAction.class.php (831B)


      1 <?php
      2 
      3 namespace cms\ui\action;
      4 
      5 use cms\action\Action;
      6 use cms\action\RequestParams;
      7 use cms\auth\Auth;
      8 use cms\auth\AuthRunner;
      9 use cms\base\Configuration;
     10 use cms\base\Configuration as C;
     11 use cms\base\Startup;
     12 use cms\model\BaseObject;
     13 use cms\model\Project;
     14 use cms\model\User;
     15 use cms\model\Value;
     16 use cms\ui\themes\Theme;
     17 use Exception;
     18 use language\Messages;
     19 use util\Html;
     20 use util\json\JSON;
     21 use logger\Logger;
     22 use util\Less;
     23 use util\UIUtils;
     24 use \util\exception\ObjectNotFoundException;
     25 use util\Session;
     26 
     27 
     28 /**
     29  * Action-Klasse fuer die Anzeige der Hauptseite.
     30  * 
     31  * @author Jan Dankert
     32  * @package openrat.actions
     33  */
     34 class UsergroupAction extends Action
     35 {
     36 	/**
     37 	 * Konstruktor
     38 	 */
     39 	function __construct()
     40 	{
     41         parent::__construct();
     42 	}
     43 
     44 
     45 	public function checkAccess() {
     46 		return true; // Allowed for all
     47 	}
     48 }