Example #1
0
File: View.php Project: 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;
 }
Example #2
0
File: View.php Project: maxwroc/PHP
 /**
  * Setter for template root directory
  * 
  * @param string $sPath - template root directory
  */
 public static function setDefaultTemplateDir($sPath)
 {
     self::$sDefaultTemplateDir = $sPath;
 }