Exemplo n.º 1
0
 public static function GetRecentlyModified($root, $path = "")
 {
     $aryDirs = FileSystemHelper::GetAllDirectories($root, $path);
     $aryPages = array();
     foreach ($aryDirs as $d) {
         if (Page::isPage($d)) {
             $aryPages[$d] = filemtime(getXMLPath($d));
         }
     }
     arSort($aryPages, SORT_NUMERIC);
     return $aryPages;
 }