Total Complexity | 3 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class BulkDeleteSystemInfo extends SystemInfo { |
||
18 | |||
19 | /** |
||
20 | * Setup hooks and filters. |
||
21 | */ |
||
22 | public function load() { |
||
23 | add_action( 'before_system_info_for_bulk-delete', array( $this, 'print_bulk_delete_details' ) ); |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Print details about Bulk Delete. |
||
28 | * |
||
29 | * PHPCS is disabled for this function since alignment will mess up the system info output. |
||
30 | * phpcs:disable |
||
31 | */ |
||
32 | public function print_bulk_delete_details() { |
||
37 | <?php |
||
38 | } |
||
39 | // phpcs:enable |
||
40 | |||
41 | /** |
||
42 | * Change the default config. |
||
43 | * |
||
44 | * @return array Modified config. |
||
45 | */ |
||
46 | protected function get_default_config() { |
||
56 |