00001 <?php
00013 class Page_Static extends Page
00014 {
00015 var $template_dir = 'home';
00016
00022 function set_dir($dir)
00023 {
00024 $this->template_dir = $dir;
00025 }
00026
00027 function GET($path='',$s='')
00028 {
00029 if(empty($path)) $path = 'index';
00030 if(!preg_match('|^[A-z0-9+_-]+$|', $path)) {
00031 $this->web->notfound();
00032 }
00033 if(!file_exists(DIR_FS_APP.DS.'templates'.DS.$this->template_dir.DS."$path.php")) {
00034 $this->web->notfound();
00035 }
00036 $this->render($this->template_dir.DS."$path.php");
00037 }
00038
00039 }
00040
00041 ?>