Example #1
0
 /**
  * @protected
  */
 public function render()
 {
     if ($this->doctor) {
         if ($this->actionView) {
             $this->actionView->set("doctor", $this->doctor);
         }
         if ($this->layoutView) {
             $this->layoutView->set("doctor", $this->doctor);
         }
     }
     parent::render();
 }
Example #2
0
 /**
  * @protected
  */
 public function render()
 {
     if ($this->organization) {
         if ($this->actionView) {
             $this->actionView->set("organization", $this->organization);
         }
         if ($this->layoutView) {
             $this->layoutView->set("organization", $this->organization);
         }
     }
     parent::render();
 }
Example #3
0
 /**
  * @protected
  */
 public function render()
 {
     $this->getActionView()->set("managing", $this->managing);
     $this->getLayoutView()->set("managing", $this->managing);
     parent::render();
 }