Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | protected function initialize() { |
||
18 | $this->page_slug = 'bulk-delete-terms'; |
||
19 | $this->item_type = 'terms'; |
||
20 | |||
21 | $this->label = array( |
||
22 | 'page_title' => __( 'Bulk Delete Taxonomy Terms', 'bulk-delete' ), |
||
23 | 'menu_title' => __( 'Bulk Delete Terms', 'bulk-delete' ), |
||
24 | ); |
||
25 | |||
26 | $this->messages = array( |
||
27 | 'warning_message' => __( 'WARNING: Once deleted, terms cannot be retrieved back. Use with caution.', 'bulk-delete' ), |
||
28 | ); |
||
29 | |||
30 | $this->show_link_in_plugin_list = true; |
||
31 | } |
||
53 |