00001 <?php 00024 class BaseCabin extends BaseCabinStructure { 00025 // Konstruktor 00026 protected function __construct ($className) { 00027 // Call parent constructor 00028 parent::__construct($className); 00029 00030 // Clean up a little 00031 $this->removeSystemArray(); 00032 $this->removeNumberFormaters(); 00033 } 00034 00035 // Is this a cabin? 00036 public final function isCabin () { 00037 return ($this->isClass("BaseCabin")); 00038 } 00039 } 00040 00041 // [EOF] 00042 ?>
1.5.6