| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function register() { |
||
| 26 | add_menu_page( |
||
| 27 | __( 'Bulk WP', 'bulk-delete' ), |
||
| 28 | __( 'Bulk WP', 'bulk-delete' ), |
||
| 29 | $this->capability, |
||
| 30 | $this->page_slug, |
||
| 31 | array( $this, 'render_page' ), |
||
| 32 | 'dashicons-trash', |
||
| 33 | $this->get_bulkwp_menu_position() |
||
| 34 | ); |
||
| 35 | |||
| 36 | parent::register(); |
||
| 37 | } |
||
| 43 |