egroupware/preferences/inc/class.preferences_categories_ui.inc.php

57 lines
1.6 KiB
PHP

<?php
/**
* Preferences UI for regular users
*
* @link http://www.egroupware.org
* @author Nathan Gray
* @package preferences
* @copyright (c) 2011 Nathan Gray
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$
*/
use EGroupware\Api\Framework;
/**
* Preference UI extends Admin class to give regular users restricted
* access to modify Api\Categories
*/
class preferences_categories_ui extends admin_categories {
protected $appname = 'preferences';
protected $get_rows = 'preferences.preferences_categories_ui.get_rows';
protected $list_link = 'preferences.preferences_categories_ui.index';
protected $edit_link = 'preferences.preferences_categories_ui.edit';
protected $add_link = 'preferences.preferences_categories_ui.edit';
protected $delete_link = 'preferences.preferences_categories_ui.delete';
function __construct()
{
if (false) parent::__construct (); // parent constructor explicitly not called!
Framework::includeCSS('/admin/templates/default/app.css');
// Load translations from admin, category stuff is there
\EGroupware\Api\Translation::add_app('admin');
}
public function get_rows(&$query, &$rows, &$readonlys)
{
$count = parent::get_rows($query, $rows, $readonlys);
$rows['edit_link'] = 'preferences.preferences_categories_ui.edit';
return $count;
}
/**
* Overriding index to set currentapp to be app whos categories we display
*
* @param array $content
*/
public function index(array $content = null, $msg = '')
{
$GLOBALS['egw_info']['flags']['currentapp'] = $_GET['cats_app'];
parent::index($content, $msg);
}
}