| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | function bd_register_page_addons() { |
||
| 19 | $bd = BULK_DELETE(); |
||
|
|
|||
| 20 | |||
| 21 | add_meta_box( Bulk_Delete::BOX_PAGE_FROM_TRASH , __( 'Pages in Trash' , 'bulk-delete' ) , 'bd_render_delete_pages_from_trash', $bd->pages_page , 'advanced' ); |
||
| 22 | } |
||
| 23 | add_action( 'bd_add_meta_box_for_pages', 'bd_register_page_addons' ); |
||
| 58 |
Short variable names may make your code harder to understand. Variable names should be self-descriptive. This check looks for variable names who are shorter than a configured minimum.