function path_library_info

Implements hook_library_info().

File

drupal/core/modules/path/path.module, line 319
Enables users to rename URLs.

Code

function path_library_info() {
  $libraries['drupal.path'] = array(
    'title' => 'Path',
    'version' => VERSION,
    'js' => array(
      drupal_get_path('module', 'path') . '/path.js' => array(),
    ),
    'dependencies' => array(
      array(
        'system',
        'jquery',
      ),
      array(
        'system',
        'drupal',
      ),
      array(
        'system',
        'drupal.form',
      ),
    ),
  );
  return $libraries;
}