function overlay_library
Implements hook_library().
File
-
modules/
overlay/ overlay.module, line 217
Code
function overlay_library() {
$module_path = drupal_get_path('module', 'overlay');
// Overlay parent.
$libraries['parent'] = array(
'title' => 'Overlay: Parent',
'website' => 'http://drupal.org/documentation/modules/overlay',
'version' => '1.0',
'js' => array(
$module_path . '/overlay-parent.js' => array(),
),
'css' => array(
$module_path . '/overlay-parent.css' => array(),
),
'dependencies' => array(
array(
'system',
'ui',
),
array(
'system',
'jquery.bbq',
),
),
);
// Overlay child.
$libraries['child'] = array(
'title' => 'Overlay: Child',
'website' => 'http://drupal.org/documentation/modules/overlay',
'version' => '1.0',
'js' => array(
$module_path . '/overlay-child.js' => array(),
),
'css' => array(
$module_path . '/overlay-child.css' => array(),
),
);
return $libraries;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.