HTML_Template_Flexy; $templateDir = explode(PATH_SEPARATOR, $fopts['templateDir']); $base = 'http://' . $fopts['host'] . $this->rootURL; $ret = array(); foreach ($templateDir as $dir){ if(!file_exists($dir . '/mail')){ continue; } if ($handle = opendir($dir . '/mail')) { while (false !== ($entry = readdir($handle))) { if ($entry == "." || $entry == ".." || !preg_match('/\.html$/', $entry)) { continue; } $path = "$dir/mail/$entry"; print_r($path);exit; $ret[] = array( 'file' => $entry, 'content' => $this->convertStyle($base, $path, false) ); } closedir($handle); } } exit; // $this->jok($ret); } }