| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 11 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 0 | 
| CRAP Score | 2 | 
| Changes | 0 | ||
| 1 | <?php | ||
| 44 | 	protected function add_help_tab( $help_tabs ) { | ||
| 45 | $overview_tab = array( | ||
| 46 | 'title' => __( 'Overview', 'bulk-delete' ), | ||
| 47 | 'id' => 'overview_tab', | ||
| 48 | 'content' => '<p>' . __( 'This screen contains different modules that allows you to delete terms from taxonomies', 'bulk-delete' ) . '</p>', | ||
| 49 | 'callback' => false, | ||
| 50 | ); | ||
| 51 | |||
| 52 | $help_tabs['overview_tab'] = $overview_tab; | ||
| 53 | |||
| 54 | return $help_tabs; | ||
| 55 | } | ||
| 57 |