New module 'Date'
This commit is contained in:
parent
a4887c6502
commit
ac4b84765b
116 changed files with 30150 additions and 0 deletions
16
sites/all/modules/date/date_php4/date_php4.install
Normal file
16
sites/all/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