function jquery_social_stream_js in jQuery social stream 7
Same name and namespace in other branches
- 7.2 jquery_social_stream.module \jquery_social_stream_js()
Implements hook_js().
File
- ./
jquery_social_stream.module, line 40 - Code for the Campaign social media module.
Code
function jquery_social_stream_js() {
return array(
JQUERY_SOCIAL_STREAM_TWITTER_PATH => array(
'callback' => 'jquery_social_stream_twitter_callback',
'page arguments' => array(),
'includes' => array(),
'dependencies' => array(),
'file' => 'jquery_social_stream.js.inc',
'bootstrap' => DRUPAL_BOOTSTRAP_DATABASE,
'skip_hook_init' => TRUE,
'i18n' => FALSE,
),
);
}