| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | function init_jetpack_search_debug_bar( $panels ) { |
||
| 11 | if ( ! Jetpack::is_module_active( 'search' ) ) { |
||
| 12 | return $panels; |
||
| 13 | } |
||
| 14 | |||
| 15 | require_once dirname( __FILE__ ) . '/debug-bar/class.jetpack-search-debug-bar.php'; |
||
| 16 | $panels[] = Jetpack_Search_Debug_Bar::instance(); |
||
| 17 | return $panels; |
||
| 18 | } |
||
| 19 | add_filter( 'debug_bar_panels', 'init_jetpack_search_debug_bar' ); |
||
| 20 |