function date_install in Date 6
Same name and namespace in other branches
- 5.2 date/date.install \date_install()
- 5 date.install \date_install()
- 6.2 date/date.install \date_install()
Implementation of hook_install(). Reset the date caches.
File
- date/
date.install, line 23
Code
function date_install() {
date_install_load();
content_notify('install', 'date');
$ret = array();
date_clear_all();
return $ret;
}