%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/templates/sj_icenter/menusys/class/mega/tmpl/ |
Upload File : |
<?php /** * YouTech menu template file. * * @author The YouTech JSC * @package menusys * @filesource default_group.php * @license Copyright (c) 2011 The YouTech JSC. All Rights Reserved. * @tutorial http://www.smartaddons.com */ $sublevelClass = 'level'.( 1+$this->get('level',1) ); $submenuClass = 'subnavi ' . $sublevelClass; ?> <div class="mega-group"> <div class="mega-group-title"> <?php echo $this->getLink(); ?> </div> <?php if($this->haveMegaContent()){ $contentType = $this->params->get('ytext_contenttype'); ?> <div class="mega-group-content"> <?php if($contentType=='menu' || $contentType=='megachild'){ $styleofcolumn = $this->params->get('styleofcolumn', ''); ?> <ul class="<?php echo $submenuClass; ?>"> <?php if($this->haveChild()){ $idx = 0; foreach($this->getChild() as $child){ $child->addClass('level'.$child->get('level',1)); ++$idx; if ($idx==1){ $child->addClass('first'); } else if ($idx==$this->countChild()){ $child->addClass('last'); } if ($child->haveMegaContent()){ $child->addClass('havechild'); } $child->getContent(); } } ?> </ul> <?php } else if ($contentType=='mod' || $contentType=='pos'){ $listModules = $this->loadModules(); if (count($listModules)>0){ foreach ($listModules as $k => $module){ $m_params = new YtParams($module->params); $m_class_sfx = $m_params->get('moduleclass_sfx', ''); $m_showtitle = $module->showtitle; //$m_params->get('moduleclass_sfx', ''); ?> <div class="mega-module<?php echo $m_class_sfx;?> moduletable<?php echo $m_class_sfx; ?>"> <?php if ($m_showtitle):?> <div class="mega-module-title"> <h3><?php echo $module->title; ?></h3> </div> <?php endif; ?> <div class="mega-module-content"> <?php echo JModuleHelper::renderModule($module, array('style'=>'raw')); ?> </div> </div> <?php } } } ?> </div> <?php } ?> </div>