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