File modules/cms/ui/action/UsergroupAction.class.php

Last commit: Sun Mar 14 22:29:56 2021 +0100	Jan Dankert	Refactoring: Clearer access check.
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 }
Download modules/cms/ui/action/UsergroupAction.class.php
History Sun, 14 Mar 2021 22:29:56 +0100 Jan Dankert Refactoring: Clearer access check. Thu, 18 Feb 2021 01:55:01 +0100 Jan Dankert New: Action for displaying a navigation while no other action is selected.