getHeadPanorama(); } public function getFooterCode() { return $this->getFooterPanorama(); } private function getHeadPanorama() { global $global; require_once $global['systemRootPath'] . 'plugin/VR360/Objects/VideosVR360.php'; if (empty($_GET['videoName']) || !VideosVR360::isVR360EnabledByVideoCleanTitle($_GET['videoName'])) { return ""; } $css = ''; $css .= ''; return $css; } private function getFooterPanorama() { global $global; require_once $global['systemRootPath'] . 'plugin/VR360/Objects/VideosVR360.php'; if (empty($_GET['videoName']) || !VideosVR360::isVR360EnabledByVideoCleanTitle($_GET['videoName'])) { return ""; } $js = ''; $js .= ''; $js .= ''; return $js; } }