diff --git a/preferences/inc/hook_config.inc.php b/preferences/inc/hook_config.inc.php index 50e7d962d6..5634a903d5 100644 --- a/preferences/inc/hook_config.inc.php +++ b/preferences/inc/hook_config.inc.php @@ -39,89 +39,4 @@ return $out; } - function force_theme($config) - { - global $phpgw; - - $themes = array('user_choice'); - $themes += $phpgw->common->list_themes(); - - while (list ($key, $value) = each ($themes)) - { - if ($config['force_theme'] == $value) - { - $selected = ' selected'; - } - else - { - $selected = ''; - } - if ($value == 'user_choice') - { - $descr = lang('Users Choice'); - } - else - { - $descr = $value; - } - $out .= '' . "\n"; - } - return $out; - } - - function template_set($config) - { - global $phpgw; - - $templ['user_choice'] = array( - 'name' => 'user_choice', - 'title' => lang('Users Choice') - ); - $templ += $phpgw->common->list_templates(); - - while (list ($key, $value) = each ($templ)) - { - if ($config['template_set'] == $key) - { - $selected = ' selected'; - } - else - { - $selected = ''; - } - - $descr = $templ[$key]['title']; - $out .= '' . "\n"; - } - return $out; - } - - function force_default_app($config) - { - global $phpgw, $phpgw_info; - - $out = '