. * * $Id$ * */ /** * gives a hint for admins in admin area * * @author Ortwin Pinke * @since 1.0.1 Beta * @uses wp add_filter() */ function semr_admin_notice(){ if(strstr(SEMMELSTATZR_VERSION, "Beta") !== false) { echo '

You are using a beta-version of semmelstatzReloaded. We will notify you for any newer version or a final release.

'; } } add_filter('admin_notices', 'semr_admin_notice'); /* // just for debugging on local machines function check_current_screen() { echo '
';
    if( !is_admin() ) return;
    global $current_screen;
    print_r( $current_screen );
    echo '
'; } add_filter('admin_notices', 'check_current_screen'); */ /** * bind the help files with contextual help area of wp * * @author Ortwin Pinke * @since 1.0.1 Beta * @uses wp add_filter() * * @global array $semr_hook * @global string $wp_version * @param string $contextual_help * @param string $screen_id * @param array $screen * @return string */ function semmelstatzR_help($contextual_help, $screen_id, $screen) { global $semr_hook, $wp_version; $semrContextHelp = ''; $sLang = (defined(WPLANG) && WPLANG != '')?WPLANG.DIRECTORY_SEPARATOR:''; $aScreenId = explode("-", $screen_id); if(is_array($semr_hook) && key_exists($aScreenId[1], $semr_hook)) { if(version_compare($wp_version, "3.3", "<")) { $sHelpPathDefault = SEMMELSTATZR_SRVPATH."includes/help/v32/default/".$aScreenId[1].".tpl"; $sHelpPathLang = SEMMELSTATZR_SRVPATH."includes/help/v32/".$sLang.$aScreenId[1].".tpl"; $sHelpFile = ''; if(file_exists($sHelpPathLang)) { $sHelpFile = $sHelpPathLang; } else if(file_exists($sHelpPathDefault)) { $sHelpFile = $sHelpPathDefault; } if(!empty($sHelpFile)) $semrContextHelp = file_get_contents($sHelpFile); } } return $semrContextHelp.$contextual_help; } add_filter('contextual_help', 'semmelstatzR_help', 10, 3); ?>