You are here

function hook_outline_designer_ops_js in Outline Designer 7.2

Implementation of hook_outline_designer_ops_js().

2 functions implement hook_outline_designer_ops_js()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

outline_designer_book_outline_designer_ops_js in modules/outline_designer_book/outline_designer_book.module
Implements hook_outline_designer_ops_js().
outline_designer_outline_designer_ops_js in ./outline_designer.module
Implements hook_outline_designer_ops_js().
1 invocation of hook_outline_designer_ops_js()
_outline_designer_setup in ./outline_designer.module
Helper function to generate scripts for a page.

File

./outline_designer.api.php, line 32

Code

function hook_outline_designer_ops_js($ajax_path) {

  // ajax_path is provided by any sub module implementation of outline designer
  // you can include any javascript or css you'd like to be included for this request
  // this has a special function to ensure js is loaded in the right order
  drupal_add_js(drupal_get_path('module', 'hidden_nodes') . '/js/hidden_nodes_ops.js', 'footer');
  return 1;
}