PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/yourdogstore.kerihosting.com/wp-content/plugins/smartcrawl-seo/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : /home/trave494/yourdogstore.kerihosting.com/wp-content/plugins/smartcrawl-seo/wpmu-dev-seo.php

<?php
/**
 * Plugin Name: SmartCrawl
 * Plugin URI: http://premium.wpmudev.org/project/wpmu-dev-seo/
 * Description: Every SEO option that a site requires, in one easy bundle.
 * Version: 2.6.1
 * Network: true
 * Text Domain: wds
 * Author: WPMU DEV
 * Author URI: http://premium.wpmudev.org
 */

/*
* Copyright 2010-2011 Incsub (http://incsub.com/)
* Author - Ulrich Sossou (Incsub)
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.

* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.

* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

if ( ! defined( 'SMARTCRAWL_VERSION' ) ) {
	define( 'SMARTCRAWL_VERSION', '2.6.1' );
}

if ( ! defined( 'SMARTCRAWL_SUI_VERSION' ) ) {
	define( 'SMARTCRAWL_SUI_VERSION', '2.3.15' );
}

if ( ! class_exists( 'Smartcrawl_Loader' ) ) {
	class Smartcrawl_Loader {

		/**
		 * Construct the Plugin object
		 */
		public function __construct() {
			$this->plugin_init();
		}

		/**
		 * Init Plugin
		 */
		public function plugin_init() {
			require_once plugin_dir_path( __FILE__ ) . 'config.php';

			// Init plugin.
			require_once SMARTCRAWL_PLUGIN_DIR . 'init.php';
		}

		/**
		 * Activate the plugin
		 *
		 * @return void
		 */
		public static function activate() {
			require_once plugin_dir_path( __FILE__ ) . 'config.php';

			// Init plugin
			require_once SMARTCRAWL_PLUGIN_DIR . 'init.php';

			Smartcrawl_Settings_Dashboard::get_instance()->defaults();

			Smartcrawl_Checkup_Settings::get_instance()->defaults();

			Smartcrawl_Onpage_Settings::get_instance()->defaults();

			Smartcrawl_Social_Settings::get_instance()->defaults();

			Smartcrawl_Sitemap_Settings::get_instance()->defaults();

			Smartcrawl_Autolinks_Settings::get_instance()->defaults();

			Smartcrawl_Settings_Settings::get_instance()->defaults();

			self::save_free_installation_timestamp();
		}

		private static function save_free_installation_timestamp() {
			$service = self::get_service();
			if ( $service->is_member() ) {
				return;
			}

			$free_install_date = get_site_option( 'wds-free-install-date' );
			if ( empty( $free_install_date ) ) {
				update_site_option( 'wds-free-install-date', current_time( 'timestamp' ) );
			}
		}

		/**
		 * @return Smartcrawl_Checkup_Service
		 */
		private static function get_service() {
			$service = Smartcrawl_Service::get( Smartcrawl_Service::SERVICE_CHECKUP );

			return $service;
		}

		/**
		 * Deactivate the plugin
		 *
		 * @return void
		 */
		public static function deactivate() {
			Smartcrawl_Controller_Sitemap_Cron::unschedule_event();
		}

		/**
		 * Gets the version number string
		 *
		 * @return string Version number info
		 */
		public static function get_version() {
			static $version;
			if ( empty( $version ) ) {
				$version = defined( 'SMARTCRAWL_VERSION' ) && SMARTCRAWL_VERSION ? SMARTCRAWL_VERSION : null;
			}

			return $version;
		}
	}
}

require_once 'autoloader.php';

if ( ! defined( 'SMARTCRAWL_PLUGIN_BASENAME' ) ) {
	define( 'SMARTCRAWL_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
}

// Plugin Activation and Deactivation hooks
register_activation_hook( __FILE__, array( 'Smartcrawl_Loader', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'Smartcrawl_Loader', 'deactivate' ) );

if ( defined( 'SMARTCRAWL_CONDITIONAL_EXECUTION' ) && SMARTCRAWL_CONDITIONAL_EXECUTION ) {
	add_action(
		'plugins_loaded',
		array( 'Smartcrawl_Loader', 'plugin_init' )
	);
} else {
	$smartcrawl_loader = new Smartcrawl_Loader();
}