Esempio n. 1
0
File: View.php Progetto: maxwroc/PHP
 /**
  * Setter for template root directory
  * 
  * @param string $sPath - template root directory
  */
 public static function setDefaultTemplateDir($sPath)
 {
     if ($sPath[strlen($sPath) - 1] != '/') {
         $sPath .= '/';
     }
     self::$sDefaultTemplateDir = $sPath;
 }
Esempio n. 2
0
File: View.php Progetto: maxwroc/PHP
 /**
  * Setter for template root directory
  * 
  * @param string $sPath - template root directory
  */
 public static function setDefaultTemplateDir($sPath)
 {
     self::$sDefaultTemplateDir = $sPath;
 }