gyro/core/lib/interfaces/itimestamped.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Interface for timestamped items 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Interfaces 00007 */ 00008 interface ITimeStamped { 00009 /** 00010 * Return creation date and time 00011 * 00012 * @return timestamp 00013 */ 00014 public function get_creation_date(); 00015 00016 /** 00017 * Return modification date and time 00018 * 00019 * @return timestamp 00020 */ 00021 public function get_modification_date(); 00022 }