function taxonomy_library_info

Implements hook_library_info().

File

drupal/core/modules/taxonomy/taxonomy.module, line 1537
Enables the organization of content into categories.

Code

function taxonomy_library_info() {
  $libraries['drupal.taxonomy'] = array(
    'title' => 'Taxonomy',
    'version' => VERSION,
    'js' => array(
      drupal_get_path('module', 'taxonomy') . '/taxonomy.js' => array(),
    ),
    'css' => array(
      drupal_get_path('module', 'taxonomy') . '/taxonomy.css' => array(),
    ),
    'dependencies' => array(
      array(
        'system',
        'jquery',
      ),
      array(
        'system',
        'drupal',
      ),
      array(
        'system',
        'drupalSettings',
      ),
      array(
        'system',
        'drupal.tabledrag',
      ),
    ),
  );
  return $libraries;
}