mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-29 11:23:54 +01:00
remove old pre 1.8 preferences.php
This commit is contained in:
parent
15d92fd416
commit
26f9fb5cd0
@ -1,139 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**************************************************************************\
|
|
||||||
* eGroupWare - Preferences *
|
|
||||||
* http://www.egroupware.org *
|
|
||||||
* Written by RalfBecker@outdoor-training.de to emulate the old preferences *
|
|
||||||
* -------------------------------------------- *
|
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
|
||||||
* under the terms of the GNU General Public License as published by the *
|
|
||||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
||||||
* option) any later version. *
|
|
||||||
\**************************************************************************/
|
|
||||||
|
|
||||||
/* $Id$ */
|
|
||||||
|
|
||||||
$GLOBALS['egw_info']['flags'] = array(
|
|
||||||
'noheader' => True,
|
|
||||||
'noappheader' => True,
|
|
||||||
'nonavbar' => True,
|
|
||||||
'currentapp' => 'preferences',
|
|
||||||
'enable_nextmatchs_class' => True,
|
|
||||||
);
|
|
||||||
include('../header.inc.php');
|
|
||||||
|
|
||||||
function create_section($title)
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][] = array(
|
|
||||||
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
|
||||||
'title' => $title,
|
|
||||||
'type' => 'section'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function create_subsection($title)
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][] = array(
|
|
||||||
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
|
||||||
'title' => $title,
|
|
||||||
'type' => 'subsection'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function create_input_box($label,$name,$help='',$default='',$size='',$maxsize='',$type='',$run_lang=True)
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name] = array(
|
|
||||||
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
|
||||||
'type' => 'input'
|
|
||||||
);
|
|
||||||
foreach(array('label','name','help','default','size','maxsize','type','run_lang','rows','cols','values','subst_help') as $var)
|
|
||||||
{
|
|
||||||
if(isset($$var))
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name][$var] = $$var;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function create_password_box($label,$name,$help='',$size='',$maxsize='',$run_lang=True)
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name] = array(
|
|
||||||
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
|
||||||
'type' => 'password'
|
|
||||||
);
|
|
||||||
foreach(array('label','name','help','default','size','maxsize','type','run_lang','rows','cols','values','subst_help') as $var)
|
|
||||||
{
|
|
||||||
if(isset($$var))
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name][$var] = $$var;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function create_text_area($label,$name,$rows,$cols,$help='',$default='',$run_lang=True)
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name] = array(
|
|
||||||
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
|
||||||
'type' => 'text'
|
|
||||||
);
|
|
||||||
foreach(array('label','name','help','default','size','maxsize','type','run_lang','rows','cols','values','subst_help') as $var)
|
|
||||||
{
|
|
||||||
if(isset($$var))
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name][$var] = $$var;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function create_select_box($label,$name,$values,$help='',$default='',$run_lang=True)
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name] = array(
|
|
||||||
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
|
||||||
'type' => 'select'
|
|
||||||
);
|
|
||||||
foreach(array('label','name','help','default','size','maxsize','type','run_lang','rows','cols','values','subst_help') as $var)
|
|
||||||
{
|
|
||||||
if(isset($$var))
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name][$var] = $$var;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function create_check_box($label,$name,$help='',$default='',$run_lang=True)
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name] = array(
|
|
||||||
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
|
||||||
'type' => 'check'
|
|
||||||
);
|
|
||||||
foreach(array('label','name','help','default','size','maxsize','type','run_lang','rows','cols','values','subst_help') as $var)
|
|
||||||
{
|
|
||||||
if(isset($$var))
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name][$var] = $$var;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function create_notify($label,$name,$rows,$cols,$help='',$default='',$values='',$subst_help=True,$run_lang=True)
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name] = array(
|
|
||||||
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
|
||||||
'type' => 'notify'
|
|
||||||
);
|
|
||||||
foreach(array('label','name','help','default','size','maxsize','type','run_lang','rows','cols','values','subst_help') as $var)
|
|
||||||
{
|
|
||||||
if(isset($$var))
|
|
||||||
{
|
|
||||||
$GLOBALS['settings'][$name][$var] = $$var;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ExecMethod('preferences.uisettings.index');
|
|
@ -44,7 +44,7 @@ class resources_hooks
|
|||||||
&& $GLOBALS['egw_info']['user']['apps']['importexport']) // Only one preference right now, need this to prevent errors
|
&& $GLOBALS['egw_info']['user']['apps']['importexport']) // Only one preference right now, need this to prevent errors
|
||||||
{
|
{
|
||||||
$file = array(
|
$file = array(
|
||||||
'Preferences' => egw::link('/preferences/preferences.php','appname='.$appname),
|
'Preferences' => egw::link('/index.php','menuaction=preferences.uisettings.index&appname='.$appname),
|
||||||
// Categories control access, not regular ACL system
|
// Categories control access, not regular ACL system
|
||||||
// 'Grant Access' => egw::link('/index.php','menuaction=preferences.uiaclprefs.index&acl_app='.$appname),
|
// 'Grant Access' => egw::link('/index.php','menuaction=preferences.uiaclprefs.index&acl_app='.$appname),
|
||||||
// 'Edit Categories' => egw::link('/index.php','menuaction=preferences.uicategories.index&cats_app=' . $appname . '&cats_level=True&global_cats=True')
|
// 'Edit Categories' => egw::link('/index.php','menuaction=preferences.uicategories.index&cats_app=' . $appname . '&cats_level=True&global_cats=True')
|
||||||
|
Loading…
Reference in New Issue
Block a user