emory and time limits if not already done by WP
*
* @return boolean true if run successfully
*/
function LoadPlugin() {
$mem = abs(intval(@ini_get('memory_limit')));
if($mem && $mem < 32) {
@ini_set('memory_limit', '32M');
}
$time = abs(intval(@ini_get("max_execution_time")));
if($time != 0 && $time < 120) {
@set_time_limit(120);
}
if(!class_exists("GoogleSitemapGenerator")) {
$path = trailingslashit(dirname(__FILE__));
if(!file_exists( $path . 'sitemap-core.php')) return false;
require_once($path. 'sitemap-core.php');
}
GoogleSitemapGenerator::Enable();
return true;
}
/**
* Returns the plugin basename of the plugin (using __FILE__)
*
* @return string The plugin basename, "sitemap" for example
*/
function GetBaseName() {
return plugin_basename(__FILE__);
}
/**
* Returns the name of this loader script, using __FILE__
*
* @return string The __FILE__ value of this loader script
*/
function GetPluginFile() {
return __FILE__;
}
/**
* Returns the plugin version
*
* Uses the WP API to get the meta data from the top of this file (comment)
*
* @return string The version like 3.1.1
*/
function GetVersion() {
if(!isset($GLOBALS["sm_version"])) {
if(!function_exists('get_plugin_data')) {
if(file_exists(ABSPATH . 'wp-admin/includes/plugin.php')) require_once(ABSPATH . 'wp-admin/includes/plugin.php'); //2.3+
else if(file_exists(ABSPATH . 'wp-admin/admin-functions.php')) require_once(ABSPATH . 'wp-admin/admin-functions.php'); //2.1
else return "0.ERROR";
}
$data = get_plugin_data(__FILE__, false, false);
$GLOBALS["sm_version"] = $data['Version'];
}
return $GLOBALS["sm_version"];
}
}
//Enable the plugin for the init hook, but only if WP is loaded. Calling this php file directly will do nothing.
if(defined('ABSPATH') && defined('WPINC')) {
add_action("init",array("GoogleSitemapGeneratorLoader","Enable"),1000,0);
}
?>
Warning: Cannot modify header information - headers already sent by (output started at /home/myconver/public_html/reviewyourchoices.com/wp-content/plugins/google-sitemap-generator/sitemap.php:250) in /home/myconver/public_html/reviewyourchoices.com/wp-includes/functions.php on line 1728
User-agent: *
Disallow:
Parse error: syntax error, unexpected T_LNUMBER in /home/myconver/public_html/reviewyourchoices.com/wp-content/plugins/google-sitemap-generator/sitemap-core.php on line 2469