Main Page | Namespace List | Class Hierarchy | Class List | File List | Class Members | File Members | Related Pages

SourceLocator.php

Go to the documentation of this file.
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 ?>

Generated on Tue Jun 29 23:40:07 2004 for Mediawiki by doxygen 1.3.7