Beispiel #1
0
 /**
  * Sets the path to search for templates.
  *
  * @param  string
  */
 public static function setPath($path)
 {
     if (!is_dir($path)) {
         throw new RPG_Exception('Specified template path does not exist.');
     }
     self::$_path = $path;
 }