You are here

function date_install_load in Date 6

13 calls to date_install_load()
date_disable in date/date.install
Implementation of hook_disable(). Empty the date caches.
date_enable in date/date.install
Implementation of hook_enable(). Reset the calendar caches.
date_install in date/date.install
Implementation of hook_install(). Reset the date caches.
date_uninstall in date/date.install
Implementation of hook_uninstall().
date_update_5100 in date/date.install
Prepare for Version 5.2 updates, make changes to field and widget settings.

... See full list

File

date/date.install, line 3

Code

function date_install_load() {

  // Updates happen in random order, whether or not the module is enabled,
  // so include critical code here just to be sure.
  include_once './' . drupal_get_path('module', 'content') . '/content.module';
  include_once './' . drupal_get_path('module', 'content') . '/includes/content.admin.inc';
  include_once './' . drupal_get_path('module', 'date_api') . '/date_api.module';
  include_once './' . drupal_get_path('module', 'date') . '/date.module';
  if (module_exists('views')) {
    include_once './' . drupal_get_path('module', 'date') . '/date.views.inc';
  }
}