1 options.module options_library_info()

Implements hook_library_info().

File

core/modules/field/modules/options/options.module, line 26
Defines selection, check box and radio button widgets for text and numeric fields.

Code

function options_library_info() {
  $path = backdrop_get_path('module', 'options');
  $libraries['options'] = array(
    'title' => 'Options',
    'version' => BACKDROP_VERSION,
    'js' => array(
      $path . '/js/options.js' => array(),
      'core/misc/tabledrag.js' => array('group' => JS_LIBRARY, 'weight' => 5),
      'core/misc/jquery.cookie.js' => array('group' => JS_LIBRARY),
    ),
    'css' => array(
      $path . '/css/options.css' => array(),
    ),
  );
  return $libraries;
}