You are here

date_php4.install in Date 6.2

Same filename and directory in other branches
  1. 5.2 date_php4/date_php4.install
  2. 6 date_php4/date_php4.install

File

date_php4/date_php4.install
View source
<?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();
}