Ejemplo n.º 1
0
 protected function loadTemplate()
 {
     $id = $this->property('templateName');
     if (is_numeric($id)) {
         return TemplateBase::getTemplate()->where('id', '=', $id)->first();
     }
     return TemplateBase::getTemplate()->where('slug', '=', $id)->first();
 }
Ejemplo n.º 2
0
 protected function loadTemplate($id = '')
 {
     return Template::getTemplate()->where('id', '=', $id)->first();
 }