PATH:
home
/
letacommog
/
seneve10
/
wp-content
/
plugins
/
page-views-count
/
admin
/
settings
<?php /* "Copyright 2012 a3 Revolution Web Design" This software is distributed under the terms of GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 */ namespace A3Rev\PageViewsCount\FrameWork\Settings { use A3Rev\PageViewsCount\FrameWork; // File Security Check if ( ! defined( 'ABSPATH' ) ) exit; /*----------------------------------------------------------------------------------- WP PVC General Settings TABLE OF CONTENTS - var parent_tab - var subtab_data - var option_name - var form_key - var position - var form_fields - var form_messages - __construct() - subtab_init() - set_default_settings() - get_settings() - subtab_data() - add_subtab() - settings_form() - init_form_fields() -----------------------------------------------------------------------------------*/ class Global_Panel extends FrameWork\Admin_UI { /** * @var string */ private $parent_tab = 'general'; /** * @var array */ private $subtab_data; /** * @var string * You must change to correct option name that you are working */ public $option_name = 'pvc_settings'; /** * @var string * You must change to correct form key that you are working */ public $form_key = 'pvc_settings'; /** * @var string * You can change the order show of this sub tab in list sub tabs */ private $position = 1; /** * @var array */ public $form_fields = array(); /** * @var array */ public $form_messages = array(); /*-----------------------------------------------------------------------------------*/ /* __construct() */ /* Settings Constructor */ /*-----------------------------------------------------------------------------------*/ public function __construct() { //$this->init_form_fields(); //$this->subtab_init(); $this->form_messages = array( 'success_message' => __( 'Page View Count Settings successfully saved.', 'page-views-count' ), 'error_message' => __( 'Error: Page View Count Settings can not save.', 'page-views-count' ), 'reset_message' => __( 'Page View Count Settings successfully reseted.', 'page-views-count' ), ); add_action( $this->plugin_name . '_set_default_settings' , array( $this, 'set_default_settings' ) ); add_action( $this->plugin_name . '-' . $this->form_key . '_settings_init' , array( $this, 'clean_on_deletion' ) ); add_action( $this->plugin_name . '_get_all_settings' , array( $this, 'get_settings' ) ); add_action( $this->plugin_name . '_settings_' . 'pvc_page_view_count_shortcode_box' . '_start', array( $this, 'page_view_count_shortcode_content' ) ); add_action( $this->plugin_name . '_settings_' . 'pvc_page_view_count_function_box' . '_start', array( $this, 'page_view_count_function_content' ) ); } /*-----------------------------------------------------------------------------------*/ /* subtab_init() */ /* Sub Tab Init */ /*-----------------------------------------------------------------------------------*/ public function subtab_init() { add_filter( $this->plugin_name . '-' . $this->parent_tab . '_settings_subtabs_array', array( $this, 'add_subtab' ), $this->position ); } /*-----------------------------------------------------------------------------------*/ /* set_default_settings() /* Set default settings with function called from Admin Interface */ /*-----------------------------------------------------------------------------------*/ public function set_default_settings() { $this->init_form_fields(); $GLOBALS[$this->plugin_prefix.'admin_interface']->reset_settings( $this->form_fields, $this->option_name, false ); } /*-----------------------------------------------------------------------------------*/ /* clean_on_deletion() /* Process when clean on deletion option is un selected */ /*-----------------------------------------------------------------------------------*/ public function clean_on_deletion() { if ( isset( $_POST['bt_save_settings'] ) && isset( $_POST['pvc_reset_all_individual'] ) ) { delete_option( 'pvc_reset_all_individual' ); \A3Rev\PageViewsCount\A3_PVC::pvc_reset_individual_items(); } if ( ( isset( $_POST['bt_save_settings'] ) || isset( $_POST['bt_reset_settings'] ) ) && get_option( $this->plugin_name . '_clean_on_deletion' ) == 0 ) { $uninstallable_plugins = (array) get_option('uninstall_plugins'); unset($uninstallable_plugins[ $this->plugin_path ]); update_option('uninstall_plugins', $uninstallable_plugins); } } /*-----------------------------------------------------------------------------------*/ /* get_settings() /* Get settings with function called from Admin Interface */ /*-----------------------------------------------------------------------------------*/ public function get_settings() { $this->init_form_fields(); $GLOBALS[$this->plugin_prefix.'admin_interface']->get_settings( $this->form_fields, $this->option_name ); } /** * subtab_data() * Get SubTab Data * ============================================= * array ( * 'name' => 'my_subtab_name' : (required) Enter your subtab name that you want to set for this subtab * 'label' => 'My SubTab Name' : (required) Enter the subtab label * 'callback_function' => 'my_callback_function' : (required) The callback function is called to show content of this subtab * ) * */ public function subtab_data() { $subtab_data = array( 'name' => 'general', 'label' => __( 'General', 'page-views-count' ), 'callback_function' => 'wp_pvc_general_settings_form', ); if ( $this->subtab_data ) return $this->subtab_data; return $this->subtab_data = $subtab_data; } /*-----------------------------------------------------------------------------------*/ /* add_subtab() */ /* Add Subtab to Admin Init /*-----------------------------------------------------------------------------------*/ public function add_subtab( $subtabs_array ) { if ( ! is_array( $subtabs_array ) ) $subtabs_array = array(); $subtabs_array[] = $this->subtab_data(); return $subtabs_array; } /*-----------------------------------------------------------------------------------*/ /* settings_form() */ /* Call the form from Admin Interface /*-----------------------------------------------------------------------------------*/ public function settings_form() { $this->init_form_fields(); $output = ''; $output .= $GLOBALS[$this->plugin_prefix.'admin_interface']->admin_forms( $this->form_fields, $this->form_key, $this->option_name, $this->form_messages ); return $output; } /*-----------------------------------------------------------------------------------*/ /* init_form_fields() */ /* Init all fields of this form */ /*-----------------------------------------------------------------------------------*/ public function init_form_fields() { // Define settings $this->form_fields = array( array( 'name' => __( 'Plugin Framework Global Settings', 'page-views-count' ), 'id' => 'plugin_framework_global_box', 'type' => 'heading', 'first_open'=> true, 'is_box' => true, ), array( 'name' => __( 'Customize Admin Setting Box Display', 'page-views-count' ), 'desc' => __( 'By default each admin panel will open with all Setting Boxes in the CLOSED position.', 'page-views-count' ), 'type' => 'heading', ), array( 'type' => 'onoff_toggle_box', ), array( 'name' => __( 'House Keeping', 'page-views-count' ), 'type' => 'heading', ), array( 'name' => __( 'Clean up on Deletion', 'page-views-count' ), 'desc' => __( 'On deletion (not deactivate) the plugin will completely remove all tables and data it created, leaving no trace it was ever here.', 'page-views-count'), 'id' => $this->plugin_name . '_clean_on_deletion', 'type' => 'onoff_checkbox', 'default' => '0', 'separate_option' => true, 'free_version' => true, 'checked_value' => '1', 'unchecked_value' => '0', 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), array( 'name' => __( 'Counter Position and Type', 'page-views-count' ), 'type' => 'heading', 'id' => 'page_views_count_customize_box', 'is_box' => true, ), array( 'name' => __( 'Counter Position', 'page-views-count' ), 'desc' => '', 'id' => 'position', 'default' => 'bottom', 'type' => 'switcher_checkbox', 'checked_value' => 'top', 'unchecked_value' => 'bottom', 'checked_label' => __( 'TOP', 'page-views-count' ), 'unchecked_label' => __( 'BOTTOM', 'page-views-count' ), ), array( 'name' => __( 'Counter Alignment', 'page-views-count' ), 'desc' => '', 'id' => 'aligment', 'default' => 'left', 'type' => 'onoff_radio', 'onoff_options' => array( array( 'val' => 'left', 'text' => __( 'Left', 'page-views-count' ), 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), array( 'val' => 'centre', 'text' => __( 'Centre', 'page-views-count' ), 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), array( 'val' => 'right', 'text' => __( 'Right', 'page-views-count' ), 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), ), ), array( 'name' => __( 'Counter Views Type', 'page-views-count' ), 'desc' => '', 'id' => 'views_type', 'default' => 'all', 'type' => 'onoff_radio', 'onoff_options' => array( array( 'val' => 'all', 'text' => __( '## Total Views, ## Views Today', 'page-views-count' ), 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), array( 'val' => 'total_only', 'text' => __( '## Total Views', 'page-views-count' ), 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), ), ), array( 'name' => __( 'Total Views Text', 'page-views-count' ), 'id' => 'total_text', 'type' => 'array_textfields', 'ids' => array( array( 'id' => 'total_text_before', 'name' => '##', 'css' => 'width:200px;', 'default' => '', ), array( 'id' => 'total_text_after', 'name' => ' <span class="description"> ' .__( 'Empty Field = Nothing Shows', 'page-views-count' ) . '</span>', 'css' => 'width:200px;', 'default' => __( 'total views', 'page-views-count' ) ), ) ), array( 'name' => __( 'Views Today Text', 'page-views-count' ), 'id' => 'today_text', 'type' => 'array_textfields', 'ids' => array( array( 'id' => 'today_text_before', 'name' => '##', 'css' => 'width:200px;', 'default' => '', ), array( 'id' => 'today_text_after', 'name' => ' <span class="description"> ' .__( 'Empty Field = Nothing Shows', 'page-views-count' ) . '</span>', 'css' => 'width:200px;', 'default' => __( 'views today', 'page-views-count' ) ), ) ), array( 'name' => __( 'Counter Icon', 'page-views-count' ), 'type' => 'heading', 'id' => 'page_views_count_customize_box', 'is_box' => true, ), array( 'name' => __( 'Select Icon', 'page-views-count' ), 'desc' => '', 'id' => 'icon', 'default' => 'chart', 'type' => 'onoff_radio', 'onoff_options' => array( array( 'val' => 'chart', 'text' => '<i><img src="' . A3_PVC_IMAGES_URL . '/chart.svg" width="24" height="24" /></i>', 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), array( 'val' => 'eye', 'text' => '<i><img src="' . A3_PVC_IMAGES_URL . '/eye.svg" width="24" height="24" /><i>', 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), ), ), array( 'name' => __( 'Icon Size', 'page-views-count' ), 'id' => 'icon_size', 'default' => 'medium', 'type' => 'select', 'options' => array( 'small' => __( 'Small', 'page-views-count' ), 'medium' => __( 'Medium', 'page-views-count' ), 'large' => __( 'Large', 'page-views-count' ), ), ), array( 'name' => __( 'Icon Color', 'page-views-count' ), 'id' => 'icon_color', 'default' => '#000000', 'type' => 'color', ), array( 'name' => __( 'Page Views Count Load', 'page-views-count' ), 'type' => 'heading', 'id' => 'page_views_count_load_box', 'is_box' => true, ), array( 'name' => __( 'Ajax Load', 'page-views-count' ), 'desc' => __( 'ON to load page views counter on front end by ajax event (recommended). Prevents caching plugins and CDNs from caching the count. If using caching you must clear the cache to see changes after turning this setting ON or OFF.', 'page-views-count' ), 'id' => 'enable_ajax_load', 'type' => 'onoff_checkbox', 'default' => 'no', 'checked_value' => 'yes', 'unchecked_value' => 'no', 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), array( 'name' => __( 'Page Views Count for Excerpt Content', 'page-views-count' ), 'type' => 'heading', 'id' => 'page_views_count_excerpt_box', 'is_box' => true, ), array( 'name' => __( 'Show on Excerpt Content', 'page-views-count' ), 'desc' => __( 'ON to show page views counter on the Excerpt Content ( Archives, Homepage, Frontpage, Category pages ).', 'page-views-count' ), 'id' => 'show_on_excerpt_content', 'type' => 'onoff_checkbox', 'default' => 'yes', 'checked_value' => 'yes', 'unchecked_value' => 'no', 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), array( 'name' => __( 'Activate on Posts and Pages', 'page-views-count' ), 'type' => 'heading', 'desc' => __( 'The settings below apply to all posts and pages on your site. You can switch the counter ON or OFF from the Page View Counter Meta box on each post or page edit page as well as manually set / reset the count values.', 'page-views-count' ), 'id' => 'activate_posts_pages_box', 'is_box' => true, ), array( 'name' => __( 'Posts', 'page-views-count' ), 'desc' => __( 'All posts including posts extracts on category and tags Archives', 'page-views-count' ), 'id' => 'post_types[post]', 'type' => 'onoff_checkbox', 'default' => 'post', 'checked_value' => 'post', 'unchecked_value' => '', 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), array( 'name' => __( 'Pages', 'page-views-count' ), 'id' => 'post_types[page]', 'type' => 'onoff_checkbox', 'default' => 'page', 'checked_value' => 'page', 'unchecked_value' => '', 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), ); $post_types = get_post_types( array( 'public' => true, '_builtin' => false ) , 'objects' ); if ( is_array( $post_types ) && count( $post_types ) > 0 ) { $form_fields_custom_posts = array(); $form_fields_custom_posts[] = array( 'name' => __( 'Activate on these Custom Post Types', 'page-views-count' ), 'type' => 'heading', 'desc' => __( 'The settings below apply to these custom post types on your site. You can switch the counter ON or OFF from the Page View Counter Meta box on each custom post edit page as well as manually set / reset the count values.', 'page-views-count' ), 'id' => 'activate_custom_post_types_box', 'is_box' => true, ); foreach ( $post_types as $post_type => $post_type_data ) { $form_fields_custom_posts[] = array( 'name' => $post_type_data->labels->name, 'id' => 'post_types['.$post_type.']', 'type' => 'onoff_checkbox', 'default' => '', 'checked_value' => $post_type, 'unchecked_value' => '', 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ); } $this->form_fields = array_merge( $this->form_fields, $form_fields_custom_posts ); } $this->form_fields = array_merge( $this->form_fields, array( array( 'name' => __( 'Activation Reset', 'page-views-count' ), 'type' => 'heading', 'id' => 'page_views_count_activation_reset_box', 'is_box' => true, ), array( 'name' => __( "Reset All Individual Items", 'page-views-count' ), 'desc' => __( "Switch ON and Save Changes to reset all custom setting are set for individual item from Item Edit Page.", 'page-views-count' ) .'<br />'.__( "<strong>Important</strong> Clear your cache after so that visitors see changes.", 'page-views-count' ), 'id' => 'pvc_reset_all_individual', 'type' => 'onoff_checkbox', 'default' => 'no', 'separate_option' => true, 'checked_value' => 'yes', 'unchecked_value' => 'no', 'checked_label' => __( 'ON', 'page-views-count' ), 'unchecked_label' => __( 'OFF', 'page-views-count' ), ), array( 'name' => __( 'Page Views Count Shortcode', 'page-views-count' ), 'type' => 'heading', 'id' => 'pvc_page_view_count_shortcode_box', 'is_box' => true, ), array( 'name' => __( 'Page Views Count Function', 'page-views-count' ), 'type' => 'heading', 'id' => 'pvc_page_view_count_function_box', 'is_box' => true, ), ) ); $this->form_fields = apply_filters( $this->option_name . '_settings_fields', $this->form_fields ); } public function page_view_count_shortcode_content() { ?> </table> <table class="form-table"> <tr valign="top"> <th scope="row"><?php _e('Shortcode', 'page-views-count'); ?></th> <td> <style> .shortcode_parameter { width: 140px; display: inline-block; font-weight: bold; } </style> <p>[pvc_stats postid="" increase="1" show_views_today="1"] <br /><br /> <span class="shortcode_parameter">postid:</span> <span class="description"><?php _e( 'Post/Page ID want to show stats, leave empty for use ID of current post.', 'page-views-count' ); ?></span> <br /><br /> <span class="shortcode_parameter">increase:</span> (1|0) <br /> <span class="shortcode_parameter"></span> 1: <span class="description"><?php _e( 'increase count and show stats.', 'page-views-count' ); ?></span> <br /> <span class="shortcode_parameter"></span> 0: <span class="description"><?php _e( 'show stats only without increase count.', 'page-views-count' ); ?></span> <br /><br /> <span class="shortcode_parameter">show_views_today:</span> (1|0) <br /> <span class="shortcode_parameter"></span> 1: <span class="description"><?php _e( 'show Views Today.', 'page-views-count' ); ?></span> <br /> <span class="shortcode_parameter"></span> 0: <span class="description"><?php _e( 'hide Views Today.', 'page-views-count' ); ?></span> </p> </tr> <?php } public function page_view_count_function_content() { ?> </table> <div><?php _e("There are 2 functions that you can use to manually add Page Views Count to any content or post type that is created by your theme or plugin that creates it's own table instead of using custom post types", 'page-views-count'); ?>.</div> <table class="form-table"> <tr valign="top"> <th scope="row"><?php _e('Single post, page, object', 'page-views-count'); ?></th> <td> <p style="margin-bottom:10px;"><?php pvc_stats_update( $postid, 1 ); ?> <br /><span class="description"><?php _e( 'Increase Page Views Count and echo stats of this post', 'page-views-count' ); ?></span></p> <p><?php pvc_stats_update( $postid, 0 ); ?> <br /><span class="description"><?php _e( 'Increase Page Views Count and return stats of this post', 'page-views-count' ); ?></span></p></td> </tr> <tr valign="top"> <th scope="row"><?php _e('Index pages', 'page-views-count'); ?></th> <td> <p style="margin-bottom:10px;"><?php pvc_stats( $postid, 1 ); ?> <br /><span class="description"><?php _e( 'Echo stats of this post', 'page-views-count' ); ?></span></p> <p><?php pvc_stats( $postid, 0 ); ?> <br /><span class="description"><?php _e( 'Return stats of this post', 'page-views-count' ); ?></span></p> </td> </tr> <?php } } } namespace { /** * wp_pvc_general_settings_form() * Define the callback function to show subtab content */ function wp_pvc_general_settings_form() { global $wp_pvc_general_settings; $wp_pvc_general_settings->settings_form(); } }
[+]
..
[-] general-settings.php
[edit]