function block_refresh_jq in Block Refresh 6
Same name and namespace in other branches
- 5 block_refresh.module \block_refresh_jq()
Implementation of hook_jq() Allows optional integration with the jQ module.
File
- ./
block_refresh.module, line 241
Code
function block_refresh_jq($op, $plugin = NULL, $args = array(), $already_loaded = NULL) {
switch ($op) {
case 'info':
$info = array();
$info['block_refresh'] = array(
'name' => t('Block Refresh'),
'description' => t('Block Refresh allows an administrator to set up any block to automatically refresh its content every x seconds. Uses jQuery. Configure on individual blocks.'),
'url' => 'http://drupal.org/project/block_refresh',
'version' => t('1.2'),
'files' => array(
'js' => array(
drupal_get_path('module', 'block_refresh') . '/js/block_refresh.js',
),
'css' => array(
drupal_get_path('module', 'block_refresh') . '/css/block_refresh.css',
),
),
);
return $info;
}
}