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