00001 <?php 00012 class SiteConfig 00013 { 00022 public function __construct($siteDir_) 00023 { 00024 $this->_siteDir = $siteDir_; 00025 } 00026 00032 public function getLogDir() 00033 { 00034 return $this->_siteDir . 'Temp/Log/'; 00035 } 00036 00042 public function getCacheDir() 00043 { 00044 return $this->_siteDir . 'Temp/Cache/'; 00045 } 00046 00055 private $_siteDir; 00056 } 00057 ?>