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