1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php defined( 'ABSPATH' ) || exit;
/** * AW_Reports_Tab_Conversions class. */ class AW_Reports_Tab_Conversions extends AW_Admin_Reports_Tab_Abstract {
/** * Constructor. */ public function __construct() { $this->id = 'conversions'; $this->name = __( 'Conversions', 'automatewoo' ); }
/** * Get report object. * * @return object */ public function get_report_class() { return new AutomateWoo\Report_Conversions(); } }
return new AW_Reports_Tab_Conversions();
|