You are here

function date_api_elements in Date 5.2

Same name and namespace in other branches
  1. 6.2 date_api.module \date_api_elements()
  2. 6 date_api.module \date_api_elements()

Implementation of hook_elements().

File

./date_api.module, line 1527
This module will make the date API available to other modules. Designed to provide a light but flexible assortment of functions and constants, with more functionality in additional files that are not loaded unless other modules specifically include them.

Code

function date_api_elements() {
  require_once './' . drupal_get_path('module', 'date_api') . '/date_api_elements.inc';
  return _date_api_elements();
}