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 28 29 30 31 32 33 34 35 36 37 38 39
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
if ( !class_exists('Wcap_Product_Report_List' ) ) {
class Wcap_Product_Report_List{
public static function wcap_display_product_report_list( ){
$wcap_product_report_list = new Wcap_Product_Report_Table();
$wcap_product_report_list->wcap_product_report_prepare_items();
?>
<div class="wrap">
<form id="wcap-sent-emails" method="get" >
<input type="hidden" name="page" value="woocommerce_ac_page" />
<input type="hidden" name="action" value="report" />
<input type="hidden" name="wcap_action" value="report" />
<?php $wcap_product_report_list->display(); ?>
</form>
</div>
<?php
}
}
}