/wp-content/plugins/google-analytics-for-wordpress/lite/includes/admin/reports/report-publisher.php
https://bitbucket.org/carloskikea/helpet · PHP · 29 lines · 18 code · 4 blank · 7 comment · 1 complexity · 02707e584ba7bee81637a62424fe574e MD5 · raw file
- <?php
- // Exit if accessed directly
- if ( ! defined( 'ABSPATH' ) ) {
- exit;
- }
-
- final class MonsterInsights_Lite_Report_Publisher extends MonsterInsights_Report {
-
- public $title;
- public $class = 'MonsterInsights_Report_Publisher';
- public $name = 'publisher';
- public $version = '1.0.0';
- public $level = 'plus';
-
- /**
- * Primary class constructor.
- *
- * @access public
- * @since 6.0.0
- */
- public function __construct() {
- $this->title = __( 'Publishers', 'google-analytics-for-wordpress' );
- parent::__construct();
- }
-
- protected function get_report_html( $data = array() ){
- return $this->get_upsell_notice();
- }
- }