My Fix for V0.1.3
-
Hi!
again thank you for this nifty plugin that speed up our development process!
The last version pushed throws a notice from this function:
“public static function init()”
My fix below:
/** * Initiates BlackBox plugin * * @return null */ public static function init() { // init profiler add_filter("all", array("BlackBox_Hook", "profiler")); apply_filters('debug', 'Profiler Initiaded'); apply_filters('debug', 'Profiler Noise'); // scripts and styles add_action('init', 'BlackBox::init_scripts_styles'); add_action('admin_footer', array("BlackBox_Hook", "footer")); add_action('wp_footer', array("BlackBox_Hook", "footer")); set_error_handler(array("BlackBox", "errorHandler"), E_ALL | E_STRICT); } /** * Initiates BlackBox scripts and styles * * @return null */ public static function init_scripts_styles() { // scripts and styles wp_register_script("blackbox-js", plugins_url()."/blackbox-debug-bar/public/highlight.pack.js", array("jquery")); wp_register_script("blackbox-highlight", plugins_url()."/blackbox-debug-bar/public/blackbox.js", array("jquery")); wp_register_style("blackbox-css", plugins_url()."/blackbox-debug-bar/public/styles.css"); wp_enqueue_style("blackbox-css"); wp_enqueue_script("blackbox-js"); wp_enqueue_script("blackbox-highlight"); }
I believe it’s quite easy to fix and push ??
Have a good day, Laurent
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘My Fix for V0.1.3’ is closed to new replies.