/** * @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; }