1.20.x contextual.module | contextual_library_info() |
Implements hook_library_info().
File
- modules/
contextual/ contextual.module, line 23 - Adds contextual links to perform actions related to elements on a page.
Code
function contextual_library_info() {
$path = backdrop_get_path('module', 'contextual');
$libraries['contextual-links'] = array(
'title' => 'Contextual Links',
'website' => 'http://drupal.org/node/473268',
'version' => BACKDROP_VERSION,
'js' => array(
$path . '/js/contextual.js' => array(),
),
'css' => array(
$path . '/css/contextual.css' => array(),
),
);
return $libraries;
}