File "report-ecommerce.php"
Full Path: /home/dcqnetm/intuns/wp-includes/js/plupload/reports/report-ecommerce.php
File size: 629 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
final class MonsterInsights_Lite_Report_eCommerce extends MonsterInsights_Report {
public $title;
public $class = 'MonsterInsights_Lite_Report_eCommerce';
public $name = 'ecommerce';
public $version = '1.0.0';
public $level = 'pro';
/**
* Primary class constructor.
*
* @access public
* @since 6.0.0
*/
public function __construct() {
$this->title = __( 'eCommerce', 'google-analytics-for-wordpress' );
parent::__construct();
}
protected function get_report_html( $data = array() ) {
return $this->get_upsell_notice();
}
}