* @author Ben Coburn */ // must be run within Dokuwiki if(!defined('DOKU_INC')) die(); define('CM_KEYMARKER','____'); // used for settings with multiple dimensions of array indices define('PLUGIN_SELF',dirname(__FILE__).'/'); define('PLUGIN_METADATA',PLUGIN_SELF.'settings/config.metadata.php'); if(!defined('DOKU_PLUGIN_IMAGES')) define('DOKU_PLUGIN_IMAGES',DOKU_BASE.'lib/plugins/config/images/'); require_once(PLUGIN_SELF.'settings/config.class.php'); // main configuration class and generic settings classes require_once(PLUGIN_SELF.'settings/extra.class.php'); // settings classes specific to these settings /** * All DokuWiki plugins to extend the admin function * need to inherit from this class */ class admin_plugin_config extends DokuWiki_Admin_Plugin { var $_file = PLUGIN_METADATA; var $_config = null; var $_input = null; var $_changed = false; // set to true if configuration has altered var $_error = false; var $_session_started = false; var $_localised_prompts = false; /** * @return int */ function getMenuSort() { return 100; } /** * handle user request */ function handle() { global $ID, $INPUT; if(!$this->_restore_session() || $INPUT->int('save') != 1 || !checkSecurityToken()) { $this->_close_session(); return; } if(is_null($this->_config)) { $this->_config = new configuration($this->_file); } // don't go any further if the configuration is locked if($this->_config->locked) { $this->_close_session(); return; } $this->_input = $INPUT->arr('config'); while (list($key) = each($this->_config->setting)) { $input = isset($this->_input[$key]) ? $this->_input[$key] : null; if ($this->_config->setting[$key]->update($input)) { $this->_changed = true; } if ($this->_config->setting[$key]->error()) $this->_error = true; } if ($this->_changed && !$this->_error) { $this->_config->save_settings($this->getPluginName()); // save state & force a page reload to get the new settings to take effect $_SESSION['PLUGIN_CONFIG'] = array('state' => 'updated', 'time' => time()); $this->_close_session(); send_redirect(wl($ID,array('do'=>'admin','page'=>'config'),true,'&')); exit(); } elseif(!$this->_error) { $this->_config->touch_settings(); // just touch to refresh cache } $this->_close_session(); } /** * output appropriate html */ function html() { $allow_debug = $GLOBALS['conf']['allowdebug']; // avoid global $conf; here. global $lang; global $ID; if (is_null($this->_config)) { $this->_config = new configuration($this->_file); } $this->setupLocale(true); print $this->locale_xhtml('intro'); ptln('
'); if ($this->_config->locked) ptln('
'.$this->getLang('locked').'
'); elseif ($this->_error) ptln('
'.$this->getLang('error').'
'); elseif ($this->_changed) ptln('
'.$this->getLang('updated').'
'); // POST to script() instead of wl($ID) so config manager still works if // rewrite config is broken. Add $ID as hidden field to remember // current ID in most cases. ptln('
'); ptln('
'); formSecurityToken(); $this->_print_h1('dokuwiki_settings', $this->getLang('_header_dokuwiki')); /** @var setting[] $undefined_settings */ $undefined_settings = array(); $in_fieldset = false; $first_plugin_fieldset = true; $first_template_fieldset = true; foreach($this->_config->setting as $setting) { if (is_a($setting, 'setting_hidden')) { // skip hidden (and undefined) settings if ($allow_debug && is_a($setting, 'setting_undefined')) { $undefined_settings[] = $setting; } else { continue; } } else if (is_a($setting, 'setting_fieldset')) { // config setting group if ($in_fieldset) { ptln(' '); ptln('
'); ptln(' '); } else { $in_fieldset = true; } if ($first_plugin_fieldset && substr($setting->_key, 0, 10)=='plugin'.CM_KEYMARKER) { $this->_print_h1('plugin_settings', $this->getLang('_header_plugin')); $first_plugin_fieldset = false; } else if ($first_template_fieldset && substr($setting->_key, 0, 7)=='tpl'.CM_KEYMARKER) { $this->_print_h1('template_settings', $this->getLang('_header_template')); $first_template_fieldset = false; } ptln('
'); ptln(' '.$setting->prompt($this).''); ptln('
'); ptln(' '); } else { // config settings list($label,$input) = $setting->html($this, $this->_error); $class = $setting->is_default() ? ' class="default"' : ($setting->is_protected() ? ' class="protected"' : ''); $error = $setting->error() ? ' class="value error"' : ' class="value"'; $icon = $setting->caution() ? ''.$setting->caution().'' : ''; ptln(' '); ptln(' '); ptln(' '.$input.''); ptln(' '); } } ptln('
'); ptln(' '.$setting->_out_key(true, true).''); ptln(' '.$icon.$label); ptln('
'); ptln('
'); if ($in_fieldset) { ptln('
'); } // show undefined settings list if ($allow_debug && !empty($undefined_settings)) { /** * Callback for sorting settings * * @param setting $a * @param setting $b * @return int if $a is lower/equal/higher than $b */ function _setting_natural_comparison($a, $b) { return strnatcmp($a->_key, $b->_key); } usort($undefined_settings, '_setting_natural_comparison'); $this->_print_h1('undefined_settings', $this->getLang('_header_undefined')); ptln('
'); ptln('
'); ptln(''); $undefined_setting_match = array(); foreach($undefined_settings as $setting) { if (preg_match('/^(?:plugin|tpl)'.CM_KEYMARKER.'.*?'.CM_KEYMARKER.'(.*)$/', $setting->_key, $undefined_setting_match)) { $undefined_setting_key = $undefined_setting_match[1]; } else { $undefined_setting_key = $setting->_key; } ptln(' '); ptln(' '); ptln(' '); ptln(' '); } ptln('
$'.$this->_config->_name.'[\''.$setting->_out_key().'\']'.$this->getLang('_msg_'.get_class($setting)).'
'); ptln('
'); ptln('
'); } // finish up form ptln('

'); ptln(' '); ptln(' '); if (!$this->_config->locked) { ptln(' '); ptln(' '); ptln(' '); } ptln('

'); ptln(''); ptln(''); } /** * @return boolean true - proceed with handle, false - don't proceed */ function _restore_session() { // dokuwiki closes the session before act_dispatch. $_SESSION variables are all set, // however they can't be changed without starting the session again if (!headers_sent()) { session_start(); $this->_session_started = true; } if (!isset($_SESSION['PLUGIN_CONFIG'])) return true; $session = $_SESSION['PLUGIN_CONFIG']; unset($_SESSION['PLUGIN_CONFIG']); // still valid? if (time() - $session['time'] > 120) return true; switch ($session['state']) { case 'updated' : $this->_changed = true; return false; } return true; } function _close_session() { if ($this->_session_started) session_write_close(); } /** * @param bool $prompts */ function setupLocale($prompts=false) { parent::setupLocale(); if (!$prompts || $this->_localised_prompts) return; $this->_setup_localised_plugin_prompts(); $this->_localised_prompts = true; } /** * @return bool */ function _setup_localised_plugin_prompts() { global $conf; $langfile = '/lang/'.$conf['lang'].'/settings.php'; $enlangfile = '/lang/en/settings.php'; if ($dh = opendir(DOKU_PLUGIN)) { while (false !== ($plugin = readdir($dh))) { if ($plugin == '.' || $plugin == '..' || $plugin == 'tmp' || $plugin == 'config') continue; if (is_file(DOKU_PLUGIN.$plugin)) continue; if (@file_exists(DOKU_PLUGIN.$plugin.$enlangfile)){ $lang = array(); @include(DOKU_PLUGIN.$plugin.$enlangfile); if ($conf['lang'] != 'en') @include(DOKU_PLUGIN.$plugin.$langfile); foreach ($lang as $key => $value){ $this->lang['plugin'.CM_KEYMARKER.$plugin.CM_KEYMARKER.$key] = $value; } } // fill in the plugin name if missing (should exist for plugins with settings) if (!isset($this->lang['plugin'.CM_KEYMARKER.$plugin.CM_KEYMARKER.'plugin_settings_name'])) { $this->lang['plugin'.CM_KEYMARKER.$plugin.CM_KEYMARKER.'plugin_settings_name'] = ucwords(str_replace('_', ' ', $plugin)); } } closedir($dh); } // the same for the active template $tpl = $conf['template']; if (@file_exists(tpl_incdir().$enlangfile)){ $lang = array(); @include(tpl_incdir().$enlangfile); if ($conf['lang'] != 'en') @include(tpl_incdir().$langfile); foreach ($lang as $key => $value){ $this->lang['tpl'.CM_KEYMARKER.$tpl.CM_KEYMARKER.$key] = $value; } } // fill in the template name if missing (should exist for templates with settings) if (!isset($this->lang['tpl'.CM_KEYMARKER.$tpl.CM_KEYMARKER.'template_settings_name'])) { $this->lang['tpl'.CM_KEYMARKER.$tpl.CM_KEYMARKER.'template_settings_name'] = ucwords(str_replace('_', ' ', $tpl)); } return true; } /** * Generates a two-level table of contents for the config plugin. * * @author Ben Coburn * * @return array */ function getTOC() { if (is_null($this->_config)) { $this->_config = new configuration($this->_file); } $this->setupLocale(true); $allow_debug = $GLOBALS['conf']['allowdebug']; // avoid global $conf; here. // gather toc data $has_undefined = false; $toc = array('conf'=>array(), 'plugin'=>array(), 'template'=>null); foreach($this->_config->setting as $setting) { if (is_a($setting, 'setting_fieldset')) { if (substr($setting->_key, 0, 10)=='plugin'.CM_KEYMARKER) { $toc['plugin'][] = $setting; } else if (substr($setting->_key, 0, 7)=='tpl'.CM_KEYMARKER) { $toc['template'] = $setting; } else { $toc['conf'][] = $setting; } } else if (!$has_undefined && is_a($setting, 'setting_undefined')) { $has_undefined = true; } } // build toc $t = array(); $t[] = html_mktocitem('configuration_manager', $this->getLang('_configuration_manager'), 1); $t[] = html_mktocitem('dokuwiki_settings', $this->getLang('_header_dokuwiki'), 1); /** @var setting $setting */ foreach($toc['conf'] as $setting) { $name = $setting->prompt($this); $t[] = html_mktocitem($setting->_key, $name, 2); } if (!empty($toc['plugin'])) { $t[] = html_mktocitem('plugin_settings', $this->getLang('_header_plugin'), 1); } foreach($toc['plugin'] as $setting) { $name = $setting->prompt($this); $t[] = html_mktocitem($setting->_key, $name, 2); } if (isset($toc['template'])) { $t[] = html_mktocitem('template_settings', $this->getLang('_header_template'), 1); $setting = $toc['template']; $name = $setting->prompt($this); $t[] = html_mktocitem($setting->_key, $name, 2); } if ($has_undefined && $allow_debug) { $t[] = html_mktocitem('undefined_settings', $this->getLang('_header_undefined'), 1); } return $t; } /** * @param string $id * @param string $text */ function _print_h1($id, $text) { ptln('

'.$text.'

'); } }