| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /**
- * Author: ExactMetrics team
- * Author URI: https://exactmetrics.com
- * Copyright 2018 ExactMetrics team
- * License: GPLv2 or later
- * License URI: http://www.gnu.org/licenses/gpl-2.0.html
- */
- // Exit if accessed directly
- if ( ! defined( 'ABSPATH' ) )
- exit();
- if ( ! class_exists( 'GADWP_Backend_Item_Reports' ) ) {
- final class GADWP_Backend_Item_Reports {
- private $gadwp;
- public function __construct() {
- $this->gadwp = GADWP();
- if ( GADWP_Tools::check_roles( $this->gadwp->config->options['access_back'] ) && 1 == $this->gadwp->config->options['backend_item_reports'] ) {
- // Add custom column in Posts List
- add_filter( 'manage_posts_columns', array( $this, 'add_columns' ) );
- // Populate custom column in Posts List
- add_action( 'manage_posts_custom_column', array( $this, 'add_icons' ), 10, 2 );
- // Add custom column in Pages List
- add_filter( 'manage_pages_columns', array( $this, 'add_columns' ) );
- // Populate custom column in Pages List
- add_action( 'manage_pages_custom_column', array( $this, 'add_icons' ), 10, 2 );
- }
- }
- public function add_icons( $column, $id ) {
- global $wp_version;
- if ( 'gadwp_stats' != $column ) {
- return;
- }
- if ( version_compare( $wp_version, '3.8.0', '>=' ) ) {
- echo '<a id="gadwp-' . $id . '" title="' . get_the_title( $id ) . '" href="#' . $id . '" class="gadwp-icon dashicons-before dashicons-chart-area"> </a>';
- } else {
- echo '<a id="gadwp-' . $id . '" title="' . get_the_title( $id ) . '" href="#' . $id . '"><img class="gadwp-icon-oldwp" src="' . GADWP_URL . 'admin/images/gadwp-icon.png"</a>';
- }
- }
- public function add_columns( $columns ) {
- return array_merge( $columns, array( 'gadwp_stats' => __( 'Analytics', 'google-analytics-dashboard-for-wp' ) ) );
- }
- }
- }
|