missing preferences_acl class uses for user-level ACL access

This commit is contained in:
Ralf Becker 2013-10-04 08:42:47 +00:00
parent 4c1dd51f0a
commit f8cb87e5a4

View File

@ -0,0 +1,25 @@
<?php
/**
* EGroupware: Preferences ACL
*
* @link http://www.egroupware.org
* @author Ralf Becker <rb@stylite.de>
* @package admin
* @copyright (c) 2013 by Ralf Becker <rb@stylite.de>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$
*/
/**
* Preferences ACL
*
* Uses admin_acl, which already does necessary access-control for non-admin users!
*/
class preferences_acl extends admin_acl
{
function __construct()
{
translation::add_app('admin');
egw_framework::includeCSS('admin', 'app');
}
}