Esempio n. 1
0
 private function showIframe($url)
 {
     $config = hikaserial::config();
     $shopConfig = hikaserial::config(false);
     $menu_style = $shopConfig->get('menu_style', 'title_bottom');
     if (HIKASHOP_J30) {
         $menu_style = 'content_top';
     }
     if ($menu_style == 'content_top') {
         echo hikaserial::getMenu();
     }
     echo '<div id="hikaserial_div"><iframe allowtransparency="true" scrolling="auto" height="450px" frameborder="0" width="100%" name="hikaserial_frame" id="hikaserial_frame" ' . 'src="' . $url . '&level=' . $config->get('level') . '&component=' . HIKASERIAL_LNAME . '&version=' . $config->get('version') . '"></iframe></div>';
 }
Esempio n. 2
0
 function listing()
 {
     hikaserial::setTitle(JText::_(self::name), self::icon, self::ctrl);
     $bar = JToolBar::getInstance('toolbar');
     $bar->appendButton('Link', HIKASERIAL_LNAME, JText::_('HIKASHOP_CPANEL'), hikaserial::completeLink('dashboard'));
     $config = hikaserial::config();
     $level = $config->get('level');
     $url = HIKASERIAL_HELPURL . 'documentation&level=' . $level;
     $shopConfig = hikaserial::config(false);
     $menu_style = $shopConfig->get('menu_style', 'title_bottom');
     if (HIKASHOP_J30) {
         $menu_style = 'content_top';
     }
     if ($menu_style == 'content_top') {
         echo hikaserial::getMenu();
     }
     echo '<div id="hikaserial_div"><iframe allowtransparency="true" scrolling="auto" height="450px" frameborder="0" width="100%" name="hikaserial_frame" id="hikaserial_frame" src="' . $url . '"></iframe></div>';
 }