@@ 686-692 (lines=7) @@ | ||
683 | ||
684 | if($is_theme) |
|
685 | { |
|
686 | if(!$GLOBALS['__ThemeModuleSkin__'][$module_name]) |
|
687 | { |
|
688 | $GLOBALS['__ThemeModuleSkin__'][$module_name] = array(); |
|
689 | $GLOBALS['__ThemeModuleSkin__'][$module_name]['skins'] = array(); |
|
690 | $moduleInfo = $oModuleModel->getModuleInfoXml($module_name); |
|
691 | $GLOBALS['__ThemeModuleSkin__'][$module_name]['title'] = $moduleInfo->title; |
|
692 | } |
|
693 | $GLOBALS['__ThemeModuleSkin__'][$module_name]['skins'][$skin_info->name] = $oModuleModel->loadSkinInfo($skin_info->path, '', ''); |
|
694 | } |
|
695 | } |
|
@@ 730-736 (lines=7) @@ | ||
727 | ||
728 | if(is_array($skin_list) && count($skin_list) > 0 && !in_array($val, $exceptionModule)) |
|
729 | { |
|
730 | if(!$GLOBALS['__ThemeModuleSkin__'][$val]) |
|
731 | { |
|
732 | $GLOBALS['__ThemeModuleSkin__'][$val] = array(); |
|
733 | $moduleInfo = $oModuleModel->getModuleInfoXml($val); |
|
734 | $GLOBALS['__ThemeModuleSkin__'][$val]['title'] = $moduleInfo->title; |
|
735 | $GLOBALS['__ThemeModuleSkin__'][$val]['skins'] = array(); |
|
736 | } |
|
737 | $GLOBALS['__ThemeModuleSkin__'][$val]['skins'] = array_merge($GLOBALS['__ThemeModuleSkin__'][$val]['skins'], $skin_list); |
|
738 | } |
|
739 | } |