Example #1
0
 public function render()
 {
     $this->template->setFile(__DIR__ . "/Flags.latte");
     if ($this->type == 'subject') {
         $this->template->item = $this->context->createServicePlaces()->wherePrimary($this->id)->fetch();
         $this['form']['subject_id']->setValue($this->id);
     } elseif ($this->type == 'event') {
         $this->template->item = $this->context->createServiceEvents()->wherePrimary($this->id)->fetch();
         $this['form']['event_id']->setValue($this->id);
     }
     $this->template->hide = $this->hide;
     $this->template->render();
 }