gyro/core/lib/interfaces/iselfdescribing.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Interface for classes that can descrioe themselves 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Interfaces 00007 */ 00008 interface ISelfDescribing { 00009 /** 00010 * Get title for this class 00011 * 00012 * @return string 00013 */ 00014 public function get_title(); 00015 00016 /** 00017 * Get description for this instance 00018 * 00019 * @return string 00020 */ 00021 public function get_description(); 00022 }