* * */ function altpager_install() { register_hook('plugin_settings', 'addon/altpager/altpager.php', 'altpager_settings'); register_hook('plugin_settings_post', 'addon/altpager/altpager.php', 'altpager_settings_post'); logger("installed altpager"); } function altpager_uninstall() { unregister_hook('plugin_settings', 'addon/altpager/altpager.php', 'altpager_settings'); unregister_hook('plugin_settings_post', 'addon/altpager/altpager.php', 'altpager_settings_post'); logger("removed altpager"); } /** * * Callback from the settings post function. * $post contains the $_POST array. * We will make sure we've got a valid user account * and if so set our configuration setting for this person. * */ function altpager_settings_post($a,$post) { if(! local_user() || (! x($_POST,'altpager-submit'))) return; set_pconfig(local_user(),'system','alt_pager',intval($_POST['altpager'])); info( t('Altpager settings updated.') . EOL); } /** * * Called from the Plugin Setting form. * Add our own settings info to the page. * */ function altpager_settings(&$a,&$s) { if(! local_user()) return; $global = get_config("alt_pager", "global"); if($global == 1) return; /* Add our stylesheet to the page so we can make our settings look nice */ $a->page['htmlhead'] .= '' . "\r\n"; /* Get the current state of our config variable */ $altpager = get_pconfig(local_user(),'system','alt_pager'); if($altpager === false) $altpager = 0; $checked = (($altpager) ? ' checked="checked" ' : ''); /* Add some HTML to the existing form */ $s .= '
'; $s .= '

' . t('Alternate Pagination Setting') . '

'; $s .= '
'; $s .= ''; $s .= ''; $s .= '
'; /* provide a submit button */ $s .= '
'; } function altpager_plugin_admin(&$a, &$o){ $t = get_markup_template( "admin.tpl", "addon/altpager/" ); $includes = array( '$field_radio' => 'field_radio.tpl', ); $includes = set_template_includes($a->theme['template_engine'], $includes); $o = replace_macros($t, $includes + array( '$submit' => t('Submit'), '$global' => array('altpagerchoice', t('Global'), 1, t('Force global use of the alternate pager'), get_config('alt_pager', 'global') == 1), '$individual' => array('altpagerchoice', t('Individual'), 2, t('Each user chooses whether to use the alternate pager'), get_config('alt_pager', 'global') == 0) )); } function altpager_plugin_admin_post(&$a){ $choice = ((x($_POST,'altpagerchoice')) ? notags(trim($_POST['altpagerchoice'])) : ''); set_config('alt_pager','global',($choice == 1 ? 1 : 0)); info( t('Settings updated.'). EOL ); }