mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
"fixed bug: old style prefs were only accessible by admins"
This commit is contained in:
parent
898151a77b
commit
fc7b2dc984
@ -24,7 +24,7 @@
|
|||||||
function create_section($title)
|
function create_section($title)
|
||||||
{
|
{
|
||||||
$GLOBALS['settings'][] = array(
|
$GLOBALS['settings'][] = array(
|
||||||
'admin' => True, // admin is controlled by the old-format hook_settings file itself
|
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
'xmlrpc' => True, // make everything availible via xmlrpc
|
||||||
'title' => $title,
|
'title' => $title,
|
||||||
'type' => 'section'
|
'type' => 'section'
|
||||||
@ -34,7 +34,7 @@
|
|||||||
function create_subsection($title)
|
function create_subsection($title)
|
||||||
{
|
{
|
||||||
$GLOBALS['settings'][] = array(
|
$GLOBALS['settings'][] = array(
|
||||||
'admin' => True, // admin is controlled by the old-format hook_settings file itself
|
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
'xmlrpc' => True, // make everything availible via xmlrpc
|
||||||
'title' => $title,
|
'title' => $title,
|
||||||
'type' => 'subsection'
|
'type' => 'subsection'
|
||||||
@ -44,7 +44,7 @@
|
|||||||
function create_input_box($label,$name,$help='',$default='',$size='',$maxsize='',$type='',$run_lang=True)
|
function create_input_box($label,$name,$help='',$default='',$size='',$maxsize='',$type='',$run_lang=True)
|
||||||
{
|
{
|
||||||
$GLOBALS['settings'][$name] = array(
|
$GLOBALS['settings'][$name] = array(
|
||||||
'admin' => True, // admin is controlled by the old-format hook_settings file itself
|
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
'xmlrpc' => True, // make everything availible via xmlrpc
|
||||||
'type' => 'input'
|
'type' => 'input'
|
||||||
);
|
);
|
||||||
@ -60,7 +60,7 @@
|
|||||||
function create_password_box($label,$name,$help='',$size='',$maxsize='',$run_lang=True)
|
function create_password_box($label,$name,$help='',$size='',$maxsize='',$run_lang=True)
|
||||||
{
|
{
|
||||||
$GLOBALS['settings'][$name] = array(
|
$GLOBALS['settings'][$name] = array(
|
||||||
'admin' => True, // admin is controlled by the old-format hook_settings file itself
|
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
'xmlrpc' => True, // make everything availible via xmlrpc
|
||||||
'type' => 'password'
|
'type' => 'password'
|
||||||
);
|
);
|
||||||
@ -76,7 +76,7 @@
|
|||||||
function create_text_area($label,$name,$rows,$cols,$help='',$default='',$run_lang=True)
|
function create_text_area($label,$name,$rows,$cols,$help='',$default='',$run_lang=True)
|
||||||
{
|
{
|
||||||
$GLOBALS['settings'][$name] = array(
|
$GLOBALS['settings'][$name] = array(
|
||||||
'admin' => True, // admin is controlled by the old-format hook_settings file itself
|
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
'xmlrpc' => True, // make everything availible via xmlrpc
|
||||||
'type' => 'text'
|
'type' => 'text'
|
||||||
);
|
);
|
||||||
@ -92,7 +92,7 @@
|
|||||||
function create_select_box($label,$name,$values,$help='',$default='',$run_lang=True)
|
function create_select_box($label,$name,$values,$help='',$default='',$run_lang=True)
|
||||||
{
|
{
|
||||||
$GLOBALS['settings'][$name] = array(
|
$GLOBALS['settings'][$name] = array(
|
||||||
'admin' => True, // admin is controlled by the old-format hook_settings file itself
|
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
'xmlrpc' => True, // make everything availible via xmlrpc
|
||||||
'type' => 'select'
|
'type' => 'select'
|
||||||
);
|
);
|
||||||
@ -108,7 +108,7 @@
|
|||||||
function create_check_box($label,$name,$help='',$default='',$run_lang=True)
|
function create_check_box($label,$name,$help='',$default='',$run_lang=True)
|
||||||
{
|
{
|
||||||
$GLOBALS['settings'][$name] = array(
|
$GLOBALS['settings'][$name] = array(
|
||||||
'admin' => True, // admin is controlled by the old-format hook_settings file itself
|
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
'xmlrpc' => True, // make everything availible via xmlrpc
|
||||||
'type' => 'check'
|
'type' => 'check'
|
||||||
);
|
);
|
||||||
@ -124,7 +124,7 @@
|
|||||||
function create_notify($label,$name,$rows,$cols,$help='',$default='',$values='',$subst_help=True,$run_lang=True)
|
function create_notify($label,$name,$rows,$cols,$help='',$default='',$values='',$subst_help=True,$run_lang=True)
|
||||||
{
|
{
|
||||||
$GLOBALS['settings'][$name] = array(
|
$GLOBALS['settings'][$name] = array(
|
||||||
'admin' => True, // admin is controlled by the old-format hook_settings file itself
|
'admin' => False, // admin is controlled by the old-format hook_settings file itself
|
||||||
'xmlrpc' => True, // make everything availible via xmlrpc
|
'xmlrpc' => True, // make everything availible via xmlrpc
|
||||||
'type' => 'notify'
|
'type' => 'notify'
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user