This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Form_Submissions_Table extends WP_List_Table | |
{ | |
/** | |
* Constructor for the list table. | |
*/ | |
public function __construct() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (!class_exists('WP_List_Table')) { | |
require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; | |
} | |
class Woo_Gst_Report_Table extends WP_List_Table | |
{ | |
/** |