You are here

function fpa_js_load in Fast Permissions Administration 7.2

Same name and namespace in other branches
  1. 6.2 fpa.module \fpa_js_load()

Loader function to wrap ctools loader function.

File

./fpa.module, line 66
Main module file for FPA.

Code

function fpa_js_load($arg) {
  $return_code = 0;
  if (module_exists('ctools')) {
    $return_code = ctools_js_load($arg);
  }
  return $return_code;
}