mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
allow other apps to answer settings hook for a given app
This commit is contained in:
parent
30ae4a3f25
commit
5948c30c73
@ -72,7 +72,7 @@
|
|||||||
translation::add_app('preferences'); // we need the prefs translations too
|
translation::add_app('preferences'); // we need the prefs translations too
|
||||||
}
|
}
|
||||||
|
|
||||||
// calling the settings hook
|
// calling app specific settings hook
|
||||||
$settings = $GLOBALS['egw']->hooks->single('settings',$this->appname);
|
$settings = $GLOBALS['egw']->hooks->single('settings',$this->appname);
|
||||||
// it either returns the settings or save it in $GLOBALS['settings'] (deprecated!)
|
// it either returns the settings or save it in $GLOBALS['settings'] (deprecated!)
|
||||||
if (isset($settings) && is_array($settings) && $settings)
|
if (isset($settings) && is_array($settings) && $settings)
|
||||||
@ -88,6 +88,14 @@
|
|||||||
return False; // no settings returned
|
return False; // no settings returned
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// calling settings hook all apps can answer (for a specific app)
|
||||||
|
foreach($GLOBALS['egw']->hooks->process('settings_'.$this->appname,$this->appname) as $app => $settings)
|
||||||
|
{
|
||||||
|
if (isset($settings) && is_array($settings) && $settings)
|
||||||
|
{
|
||||||
|
$this->settings = array_merge($this->settings,$settings);
|
||||||
|
}
|
||||||
|
}
|
||||||
/* Remove ui-only settings */
|
/* Remove ui-only settings */
|
||||||
if($this->xmlrpc)
|
if($this->xmlrpc)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user