/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

  1. <?php
  2. // Exit if accessed directly
  3. if ( ! defined( 'ABSPATH' ) ) {
  4. exit;
  5. }
  6. final class MonsterInsights_Lite_Report_Publisher extends MonsterInsights_Report {
  7. public $title;
  8. public $class = 'MonsterInsights_Report_Publisher';
  9. public $name = 'publisher';
  10. public $version = '1.0.0';
  11. public $level = 'plus';
  12. /**
  13. * Primary class constructor.
  14. *
  15. * @access public
  16. * @since 6.0.0
  17. */
  18. public function __construct() {
  19. $this->title = __( 'Publishers', 'google-analytics-for-wordpress' );
  20. parent::__construct();
  21. }
  22. protected function get_report_html( $data = array() ){
  23. return $this->get_upsell_notice();
  24. }
  25. }