00001 <?PHP 00002 00003 # 00004 # FILE: SPT--SPTDate.php 00005 # 00006 # METHODS PROVIDED: 00007 # SPTDate() 00008 # - constructor 00009 # SomeMethod($SomeParameter, $AnotherParameter) 00010 # - short description of method 00011 # 00012 # AUTHOR: 00013 # 00014 # Part of the Scout Portal Toolkit 00015 # Copyright 2002 Internet Scout Project 00016 # http://scout.cs.wisc.edu 00017 # 00018 00019 class SPTDate extends Date { 00020 00021 # object constructor 00022 function SPTDate($BeginDate, $EndDate = NULL, $Precision = NULL) 00023 { 00024 # call parent constructor 00025 $this->Date($BeginDate, $EndDate, $Precision); 00026 } 00027 } 00028 00029 00030 ?>