Pulse Storm Launcher

0

The Pulse Storm Launcher is an admin launcher application, providing navigation-less access to all your admin pages and posts, including support for products and orders in popular WordP

Version
Last updated
Active installations
WordPress Version
Tested up to
Rating
Total ratings
Tag
This plugin is outdated and might not be supported anymore.

Description

The Pulse Storm Launcher is an admin launcher application, providing navigation-less access to all your admin pages and posts, including support for products and orders in popular WordPress e-commerce packages like WooCommerce and WP eCommerce.

Still not sure what we’re about? Watch our 4 minutes introductory screencast where all is revealed.

WordPress Programmer Note

End users programmers can use the following filter hooks to add their own menus to the immediate and ajax launcher results.

add_filter('pulsestorm_launcher_ajax_menus', function($links){
    return $links;
});

add_filter('pulsestorm_launcher_menus', function($links){
    return $links;
});    

Just add items to the $links array (var_dump($links) for the current format) and your links will be available.

The launcher will perform a basic text search (via in page javascript) for items in the immediate array (the pulsestorm_launcher_menus hook). Programmers should use the immediate results sparingly, as they’re loaded into memory on every page load.

In the ajax results (the pulsestorm_launcher_ajax_menus hook), programmers should use the terms request variable to perform a search for their information, and only return links that are relevant.

See pulsestorm_launcher.php for more usage tips/hints. The launcher plugin code uses these hooks internally.