Now all modules are in core modules folder
This commit is contained in:
parent
5ba1cdfa0b
commit
05b6a91b0c
1907 changed files with 0 additions and 0 deletions
16
modules/date/date_php4/date_php4.install
Normal file
16
modules/date/date_php4/date_php4.install
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
function date_php4_set_variables() {
|
||||
variable_set('date_max_year', 3000);
|
||||
variable_set('date_min_year', 100);
|
||||
variable_set('date_php_min_year', 1971);
|
||||
}
|
||||
|
||||
function date_php4_install() {
|
||||
$ret = array();
|
||||
date_php4_set_variables();
|
||||
return $ret;
|
||||
}
|
||||
|
||||
function date_php4_enable() {
|
||||
date_php4_set_variables();
|
||||
}
|
Reference in a new issue