1 | <?php |
||
15 | class PPP_Accounts_Table extends WP_List_Table { |
||
16 | |||
17 | /** |
||
18 | * Generate the Class from it's parent |
||
19 | */ |
||
20 | public function __construct() { |
||
29 | |||
30 | /** |
||
31 | * What to show if no items are found |
||
32 | * @return void |
||
33 | */ |
||
34 | public function no_items() { |
||
37 | |||
38 | /** |
||
39 | * The Default columns |
||
40 | * @param array $item The Item being displayed |
||
41 | * @param string $column_name The column we're currently in |
||
42 | * @return string The Content to display |
||
43 | */ |
||
44 | public function column_default( $item, $column_name ) { |
||
47 | |||
48 | /** |
||
49 | * The columns for our list view |
||
50 | * @return array Columns shown on the Schedule page |
||
51 | */ |
||
52 | public function get_columns() { |
||
63 | |||
64 | /** |
||
65 | * Prepare the data for the WP List Table |
||
66 | * @return void |
||
67 | */ |
||
68 | public function prepare_items() { |
||
89 | } |
||
90 | |||
92 |