/**
  * 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()
 {
     //Register the sitemap creator to wordpress...
     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);
     //WP 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::CallShowPingResult();
     }
 }
Beispiel #2
0
 /**
  * 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.
  */
 static function Enable()
 {
     //Check for 3.0 multisite, NOT supported yet!
     if (defined('WP_ALLOW_MULTISITE') && WP_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 wordpress...
     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);
     //WP 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::CallShowPingResult();
     }
     //If somebody had v4 installed and downgraded, delete rewrite rules and rename backup sitemaps back if available.
     if (get_option("sm_rewrite_done", false)) {
         add_action('wp_loaded', array(__CLASS__, 'DeleteV4Rewrite'), 9999, 1);
     }
 }