disabling custom template color until Pixelegg supports it

This commit is contained in:
Ralf Becker 2014-07-02 10:37:50 +00:00
parent d06a39a154
commit 1c29c3974a
2 changed files with 13 additions and 1 deletions

View File

@ -91,6 +91,7 @@ $GLOBALS['settings'] = array(
'xmlrpc' => True,
'admin' => False,
),
/* disabled until Pixelegg template supports it
'template_color' => array(
'type' => 'select',
'label' => 'Template color',
@ -110,7 +111,7 @@ $GLOBALS['settings'] = array(
'help' => lang('Use eg. %1 or %2','#FF0000','orange'),
'xmlrpc' => True,
'admin' => False,
),
),*/
'navbar_format' => false, // not used in JDots (defined in common prefs)
'default_app' => false, // not used in JDots, as we can have multiple tabs open ...
);

View File

@ -57,4 +57,15 @@ class pixelegg_framework extends jdots_framework
}
return parent::header($extra);
}
/**
* Overwrite to NOT add customizable colors from jDots
*
* @see egw_framework::_get_css()
* @return array
*/
public function _get_css()
{
return egw_framework::_get_css();
}
}