예제 #1
0
파일: edit.php 프로젝트: bosoy83/progtest
 public function __construct($template = NULL, array $partials = NULL)
 {
     // Шаблон берем от метода Add
     $template = 'admin/banner/add';
     parent::__construct($template, $partials, TRUE);
     // Создаем объект текущей новости
     $this->cur_banner = Sprig::factory('banner', array('id' => $this->id))->load()->as_array();
     // Регистрируем метку о типе баннера
     $this->cur_banner[$this->cur_banner['type']] = TRUE;
 }
예제 #2
0
파일: add.php 프로젝트: bosoy83/progtest
 public function __construct($template = NULL, array $partials = NULL)
 {
     parent::__construct($template, $partials);
 }