Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
21 | protected function initialize() { |
||
22 | $this->page_slug = 'bulk-delete-pages'; |
||
23 | $this->item_type = 'pages'; |
||
24 | $this->capability = 'delete_pages'; |
||
25 | |||
26 | $this->label = array( |
||
27 | 'page_title' => __( 'Bulk Delete Pages', 'bulk-delete' ), |
||
28 | 'menu_title' => __( 'Bulk Delete Pages', 'bulk-delete' ), |
||
29 | ); |
||
30 | |||
31 | $this->messages = array( |
||
32 | 'warning_message' => __( 'WARNING: Pages deleted once cannot be retrieved back. Use with caution.', 'bulk-delete' ), |
||
33 | ); |
||
56 |