Example #1
0
 function page_exists($slug)
 {
     $page = Theme_Page::page_exists($slug);
     if (!$page) {
         return false;
     }
     if (file_exists($this->theme . '/' . $page->layout)) {
         return true;
     } else {
         return false;
     }
 }
Example #2
0
 function __construct(Theme_Page $page)
 {
     $this->page = $page->data();
 }