Example #1
0
 /**
  * Function saves component epilog environment
  *
  * @param array[string]mixed $arEpilogInfo
  * @return void
  *
  */
 public final function setTemplateEpilog($arEpilogInfo)
 {
     $this->__component_epilog = $arEpilogInfo;
     //Check if parent component exists and plug epilog it to it's "collection"
     if ($this->__parent) {
         $this->__parent->addChildEpilog($this->__component_epilog);
     }
 }