Example #1
0
 public function getView(Flux_Template $template, $module, $action)
 {
     $path = "{$this->themeDir}/" . $template->getName() . "/{$module}/{$action}.php";
     if (file_exists($path)) {
         return $path;
     }
     if (!empty($template->parentTemplate)) {
         return $this->getView($template->parentTemplate, $module, $action);
     }
     return false;
 }