You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
192 lines
7.3 KiB
192 lines
7.3 KiB
8 years ago
|
<?php
|
||
|
/**
|
||
|
* The Feature Manager class.
|
||
|
*
|
||
|
* @package All-in-One-SEO-Pack
|
||
|
*/
|
||
|
|
||
|
if ( ! class_exists( 'All_in_One_SEO_Pack_Feature_Manager' ) ) {
|
||
|
|
||
|
/**
|
||
|
* Class All_in_One_SEO_Pack_Feature_Manager
|
||
|
*/
|
||
|
class All_in_One_SEO_Pack_Feature_Manager extends All_in_One_SEO_Pack_Module {
|
||
|
|
||
|
protected $module_info = array();
|
||
|
|
||
|
/**
|
||
|
* All_in_One_SEO_Pack_Feature_Manager constructor.
|
||
|
*
|
||
|
* @param $mod Module.
|
||
|
*/
|
||
|
function __construct( $mod ) {
|
||
|
$this->name = __( 'Feature Manager', 'all-in-one-seo-pack' ); // Human-readable name of the plugin.
|
||
|
$this->prefix = 'aiosp_feature_manager_'; // Option prefix.
|
||
|
$this->file = __FILE__; // The current file.
|
||
|
parent::__construct();
|
||
|
$this->module_info = array(
|
||
|
'sitemap' => array(
|
||
|
'name' => __( 'XML Sitemaps', 'all-in-one-seo-pack' ),
|
||
|
'description' => __( 'Create and manage your XML Sitemaps using this feature and submit your XML Sitemap to Google, Bing/Yahoo and Ask.com.', 'all-in-one-seo-pack' ),
|
||
|
),
|
||
|
'opengraph' => array(
|
||
|
'name' => __( 'Social Meta', 'all-in-one-seo-pack' ),
|
||
|
'description' => __( 'Activate this feature to add Social Meta data to your site to deliver closer integration between your website/blog and Facebook, Twitter, and Google+.', 'all-in-one-seo-pack' ),
|
||
|
),
|
||
|
'robots' => array(
|
||
|
'name' => __( 'Robots.txt', 'all-in-one-seo-pack' ),
|
||
|
'description' => __( 'Generate and validate your robots.txt file to guide search engines through your site.', 'all-in-one-seo-pack' ),
|
||
|
),
|
||
|
'file_editor' => array(
|
||
|
'name' => __( 'File Editor', 'all-in-one-seo-pack' ),
|
||
|
'description' => __( 'Edit your robots.txt file and your .htaccess file to fine-tune your site.', 'all-in-one-seo-pack' ),
|
||
|
),
|
||
|
'importer_exporter' => array(
|
||
|
'name' => __( 'Importer & Exporter', 'all-in-one-seo-pack' ),
|
||
|
'description' => __( 'Exports and imports your All in One SEO Pack plugin settings.', 'all-in-one-seo-pack' ),
|
||
|
),
|
||
|
'bad_robots' => array(
|
||
|
'name' => __( 'Bad Bot Blocker', 'all-in-one-seo-pack' ),
|
||
|
'description' => __( 'Stop badly behaving bots from slowing down your website.', 'all-in-one-seo-pack' ),
|
||
|
),
|
||
|
'performance' => array(
|
||
|
'name' => __( 'Performance', 'all-in-one-seo-pack' ),
|
||
|
'description' => __( 'Optimize performance related to SEO and check your system status.', 'all-in-one-seo-pack' ),
|
||
|
'default' => 'on',
|
||
|
),
|
||
|
);
|
||
|
|
||
|
if ( AIOSEOPPRO ) {
|
||
|
|
||
|
$this->module_info['coming_soon'] = array(
|
||
|
'name' => __( 'Coming Soon...', 'all-in-one-seo-pack' ),
|
||
|
'description' => __( 'Image SEO', 'all-in-one-seo-pack' ),
|
||
|
'save' => false,
|
||
|
);
|
||
|
$this->module_info['video_sitemap'] = array(
|
||
|
'name' => __( 'Video Sitemap', 'all-in-one-seo-pack' ),
|
||
|
'description' => __( 'Create and manage your Video Sitemap using this feature and submit your Video Sitemap to Google, Bing/Yahoo and Ask.com.', 'all-in-one-seo-pack' ),
|
||
|
);
|
||
|
|
||
|
} else {
|
||
|
|
||
|
$this->module_info['coming_soon'] = array(
|
||
|
'name' => __( 'Video Sitemap', 'all-in-one-seo-pack' ),
|
||
|
'description' => __( 'Pro Version Only', 'all-in-one-seo-pack' ),
|
||
|
'save' => false,
|
||
|
);
|
||
|
|
||
|
}
|
||
|
|
||
|
// Set up default settings fields.
|
||
|
// Name - Human-readable name of the setting.
|
||
|
// Help_text - Inline documentation for the setting.
|
||
|
// Type - Type of field; this defaults to checkbox; currently supported types are checkbox, text, select, multiselect.
|
||
|
// Default - Default value of the field.
|
||
|
// Initial_options - Initial option list used for selects and multiselects.
|
||
|
// Other supported options: class, id, style -- allows you to set these HTML attributes on the field.
|
||
|
|
||
|
$this->default_options = array();
|
||
|
$this->module_info = apply_filters( 'aioseop_module_info', $this->module_info );
|
||
|
$mod[] = 'coming_soon';
|
||
|
|
||
|
foreach ( $mod as $m ) {
|
||
|
if ( 'performance' === $m && ! is_super_admin() ) {
|
||
|
continue;
|
||
|
}
|
||
|
$this->default_options["enable_$m"] = array(
|
||
|
'name' => $this->module_info[ $m ]['name'],
|
||
|
'help_text' => $this->module_info[ $m ]['description'],
|
||
|
'type' => 'custom',
|
||
|
'class' => 'aioseop_feature',
|
||
|
'id' => "aioseop_$m",
|
||
|
'save' => true,
|
||
|
);
|
||
|
|
||
|
if ( ! empty( $this->module_info[ $m ]['image'] ) ) {
|
||
|
$this->default_options["enable_$m"]['image'] = $this->module_info[ $m ]['image'];
|
||
|
}
|
||
|
if ( ! empty( $this->module_info[ $m ] ) ) {
|
||
|
foreach ( array( 'save', 'default' ) as $option ) {
|
||
|
if ( isset( $this->module_info[ $m ][ $option ] ) ) {
|
||
|
$this->default_options["enable_$m"][ $option ] = $this->module_info[ $m ][ $option ];
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
$this->layout = array(
|
||
|
'default' => array(
|
||
|
'name' => $this->name,
|
||
|
'help_link' => 'https://semperplugins.com/documentation/feature-manager/',
|
||
|
'options' => array_keys( $this->default_options ),
|
||
|
),
|
||
|
);
|
||
|
// Load initial options / set defaults.
|
||
|
$this->update_options();
|
||
|
if ( is_admin() ) {
|
||
|
add_filter( $this->prefix . 'output_option', array( $this, 'display_option_div' ), 10, 2 );
|
||
|
add_filter( $this->prefix . 'submit_options', array( $this, 'filter_submit' ) );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Determines the menu order.
|
||
|
*
|
||
|
* @return int
|
||
|
*/
|
||
|
function menu_order() {
|
||
|
return 20;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param $submit
|
||
|
*
|
||
|
* @return mixed
|
||
|
*/
|
||
|
function filter_submit( $submit ) {
|
||
|
$submit['Submit']['value'] = __( 'Update Features', 'all-in-one-seo-pack' ) . ' »';
|
||
|
$submit['Submit']['class'] .= ' hidden';
|
||
|
$submit['Submit_Default']['value'] = __( 'Reset Features', 'all-in-one-seo-pack' ) . ' »';
|
||
|
|
||
|
return $submit;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param $buf
|
||
|
* @param $args
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
function display_option_div( $buf, $args ) {
|
||
|
$name = $img = $desc = $checkbox = $class = '';
|
||
|
if ( isset( $args['options']['help_text'] ) && ! empty( $args['options']['help_text'] ) ) {
|
||
|
$desc .= '<p class="aioseop_desc">' . $args['options']['help_text'] . '</p>';
|
||
|
}
|
||
|
if ( $args['value'] ) {
|
||
|
$class = ' active';
|
||
|
}
|
||
|
if ( isset( $args['options']['image'] ) && ! empty( $args['options']['image'] ) ) {
|
||
|
$img .= '<p><img src="' . AIOSEOP_PLUGIN_IMAGES_URL . $args['options']['image'] . '"></p>';
|
||
|
} else {
|
||
|
$img .= '<p><span class="aioseop_featured_image' . $class . '"></span></p>';
|
||
|
}
|
||
|
|
||
|
if ( $args['options']['save'] ) {
|
||
|
$name = "<h3>{$args['options']['name']}</h3>";
|
||
|
$checkbox .= '<input type="checkbox" onchange="jQuery(\'#' . $args['options']['id'] . ' .aioseop_featured_image, #' . $args['options']['id'] . ' .feature_button\').toggleClass(\'active\', this.checked);jQuery(\'input[name=Submit]\').trigger(\'click\');" style="display:none;" id="' . $args['name'] . '" name="' . $args['name'] . '"';
|
||
|
if ( $args['value'] ) {
|
||
|
$checkbox .= ' CHECKED';
|
||
|
}
|
||
|
$checkbox .= '><span class="button-primary feature_button' . $class . '"></span>';
|
||
|
} else {
|
||
|
$name = "<b>{$args['options']['name']}</b>";
|
||
|
}
|
||
|
if ( ! empty( $args['options']['id'] ) ) {
|
||
|
$args['attr'] .= " id='{$args['options']['id']}'";
|
||
|
}
|
||
|
|
||
|
return $buf . "<div {$args['attr']}><label for='{$args['name']}'><div class='free flag'>FREE</div><div class='pro flag'>PRO</div>{$name}{$img}{$desc}{$checkbox}</label></div>";
|
||
|
}
|
||
|
}
|
||
|
}
|