Ejemplo n.º 1
0
 public function getTemplateNameOptions()
 {
     $templates = TemplateBase::all();
     $array_dropdown = ['' => ''];
     foreach ($templates as $template) {
         $array_dropdown[$template->id] = $template->title . ' [' . $this->langs[$template->lang] . ']';
     }
     return $array_dropdown;
 }