本文整理汇总了PHP中GoogleSitemapGeneratorLoader::CallShonxtingResult方法的典型用法代码示例。如果您正苦于以下问题:PHP GoogleSitemapGeneratorLoader::CallShonxtingResult方法的具体用法?PHP GoogleSitemapGeneratorLoader::CallShonxtingResult怎么用?PHP GoogleSitemapGeneratorLoader::CallShonxtingResult使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GoogleSitemapGeneratorLoader
的用法示例。
在下文中一共展示了GoogleSitemapGeneratorLoader::CallShonxtingResult方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Enable
/**
* Enabled the sitemap plugin with registering all required hooks
*
* If the sm_command and sm_key GET params are given, the function will init the generator to rebuild the sitemap.
*/
function Enable()
{
//Check for 3.0 multisite, NOT supported yet!
if (defined('nxt_ALLOW_MULTISITE') && nxt_ALLOW_MULTISITE || function_exists('is_multisite') && is_multisite()) {
if (function_exists('is_super_admin') && is_super_admin()) {
add_action('admin_notices', array('GoogleSitemapGeneratorLoader', 'AddMultisiteWarning'));
}
return;
}
//Register the sitemap creator to nxtclass...
add_action('admin_menu', array('GoogleSitemapGeneratorLoader', 'RegisterAdminPage'));
//Nice icon for Admin Menu (requires Ozh Admin Drop Down Plugin)
add_filter('ozh_adminmenu_icon', array('GoogleSitemapGeneratorLoader', 'RegisterAdminIcon'));
//Additional links on the plugin page
add_filter('plugin_row_meta', array('GoogleSitemapGeneratorLoader', 'RegisterPluginLinks'), 10, 2);
//Existing posts was deleted
add_action('delete_post', array('GoogleSitemapGeneratorLoader', 'CallCheckForAutoBuild'), 9999, 1);
//Existing post was published
add_action('publish_post', array('GoogleSitemapGeneratorLoader', 'CallCheckForAutoBuild'), 9999, 1);
//Existing page was published
add_action('publish_page', array('GoogleSitemapGeneratorLoader', 'CallCheckForAutoBuild'), 9999, 1);
//nxt Cron hook
add_action('sm_build_cron', array('GoogleSitemapGeneratorLoader', 'CallBuildSitemap'), 1, 0);
//External build hook
add_action('sm_rebuild', array('GoogleSitemapGeneratorLoader', 'CallBuildNowRequest'), 1, 0);
//Robots.txt request
add_action('do_robots', array('GoogleSitemapGeneratorLoader', 'CallDoRobots'), 100, 0);
//Help topics for context sensitive help
add_filter('contextual_help_list', array('GoogleSitemapGeneratorLoader', 'CallHtmlShowHelpList'), 9999, 2);
//Check if this is a BUILD-NOW request (key will be checked later)
if (!empty($_GET["sm_command"]) && !empty($_GET["sm_key"])) {
GoogleSitemapGeneratorLoader::CallCheckForManualBuild();
}
//Check if the result of a ping request should be shown
if (!empty($_GET["sm_ping_service"])) {
GoogleSitemapGeneratorLoader::CallShonxtingResult();
}
}