Example #1
0
 public function action_index()
 {
     $this->template->title = __('Snippets');
     $this->template->content = View::factory('snippet/index', array('snippets' => Model_File_Snippet::find_all()));
 }
Example #2
0
 /**
  * 
  * @return array
  */
 public static function html_select()
 {
     $choices = array(__('--- none ---'));
     $snippets = Model_File_Snippet::find_all();
     foreach ($snippets as $snippet) {
         $choices[$snippet->name] = $snippet->name;
     }
     return $choices;
 }