예제 #1
0
 /**
  * @return string
  */
 public function getScripts()
 {
     $html = '';
     foreach ($this->bxHelperData->getScripts() as $script) {
         $html .= $script;
     }
     if ($this->customerSession->getCustomerId()) {
         $html .= $this->bxHelperData->reportLogin($this->customerSession->getCustomerId());
     }
     return $html;
 }