function datex_libraries_info in Datex 7
Implements hook_libraries_info().
File
- datex_api/
datex_api.module, line 152
Code
function datex_libraries_info() {
$libraries = array();
$libraries['jquery.datepick'] = array(
'name' => 'jQuery Datepick',
'vendor url' => 'http://keith-wood.name/',
'download url' => 'http://keith-wood.name/datepick.html',
'version callback' => '_datex_jquery_intl_version_callback',
'files' => array(
'js' => array(
'jquery.datepick.min.js',
),
'css' => array(
'ui.datepick.css',
'jquery.datepick.css',
),
),
);
$libraries['jquery.datepick.fa'] = array(
'name' => ' jQuery Datepicker Persian',
'vendor url' => 'http://keith-wood.name/',
'download url' => 'http://keith-wood.name/calendars.html',
'version callback' => '_datex_jquery_intl_version_callback',
'files' => array(
'js' => array(
'jquery.datepicker.fa.js',
),
),
);
$libraries['jquery.dateentry'] = array(
'name' => 'jQuery Date Entry',
'vendor url' => 'http://keith-wood.name/',
'download url' => 'http://keith-wood.name/dateEntry.html',
'version callback' => '_datex_jquery_intl_version_callback',
'files' => array(
'js' => array(
'jquery.dateentry.pack.js',
),
'css' => array(
'jquery.dateentry.css',
),
),
);
$libraries['jquery.dateentry.fa'] = array(
'name' => ' jQuery Datepicker Persian',
'vendor url' => 'http://keith-wood.name/',
'download url' => 'http://keith-wood.name/calendars.html',
'version callback' => '_datex_jquery_intl_version_callback',
'files' => array(
'js' => array(
'jquery.datepicker.fa.js',
),
),
);
$libraries['jquery.timeentry'] = array(
'name' => ' jQuery Time Entry',
'vendor url' => 'http://keith-wood.name/',
'download url' => 'http://keith-wood.name/timeEntry.html',
'version callback' => '_datex_jquery_intl_version_callback',
'files' => array(
'js' => array(
'jquery.timeentry.pack.js',
),
'css' => array(
'jquery.timeentry.css',
),
),
);
$libraries['jquery.timeentry.fa'] = array(
'name' => ' jQuery DateTime Entry Persian',
'vendor url' => 'http://keith-wood.name/',
'download url' => 'http://keith-wood.name/calendars.html',
'version callback' => '_datex_jquery_intl_version_callback',
'files' => array(
'js' => array(
'jquery.timeentry.fa.js',
),
),
);
$libraries['jquery.datetimeentry'] = array(
'name' => ' jQuery DateTime Entry',
'vendor url' => 'http://keith-wood.name/',
'download url' => 'http://keith-wood.name/datetimeEntry.html',
'version callback' => '_datex_jquery_intl_version_callback',
'files' => array(
'js' => array(
'jquery.datetimeentry.min.js',
),
'css' => array(
'jquery.datetimeentry.css',
),
),
);
$libraries['jquery.datetimeentry.fa'] = array(
'name' => ' jQuery DateTime Entry Persian',
'vendor url' => 'http://keith-wood.name/',
'download url' => 'http://keith-wood.name/calendars.html',
'version callback' => '_datex_jquery_intl_version_callback',
'files' => array(
'js' => array(
'jquery.datetimeentry.fa.js',
),
),
);
return $libraries;
}