.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit( 'You shall not pass' );
}
if ( ! is_admin() ) {
return;
}
if ( ! ini_get( 'display_errors' ) ) {
add_action( 'admin_notices', function () {
?>
search_urls = apply_filters(
'apermo_xdebug_search_urls',
[
'google' => [
'url' => 'https://www.google.com/search?q=\'+search_term+\'',
'label' => __( 'Search on Google', 'apermo-xdebug' ),
],
'stackoverflow' => [
'url' => 'https://www.stackoverflow.com/search?q=\'+search_term+\'',
'label' => __( 'Search on Stackoverflow', 'apermo-xdebug' ),
],
]
);
}
/**
* Outputs
for the WordPress Backend.
* Called by hook: admin_head
*/
public function print_javascript() {
?>