00001 <?php 00002 00013 class PHPTAL_SourceLocator 00014 { 00015 var $path; 00016 00017 function PHPTAL_SourceLocator($path) 00018 { 00019 $this->path = $path; 00020 } 00021 00031 function realPath() 00032 { 00033 return $this->path; 00034 } 00035 00044 function lastModified() 00045 { 00046 return filemtime($this->path); 00047 } 00048 00056 function data() 00057 { 00058 return join('', file($this->path)); 00059 } 00060 } 00061 00062 ?>