selected_widget; unset($vars->module); unset($vars->act); unset($vars->selected_widget); $attribute = array(); if($vars) { foreach($vars as $key => $val) { if(strpos($val,'|@|')>0) $val = str_replace('|@|',',',$val); $attribute[] = sprintf('%s="%s"', $key, str_replace('"','\"',$val)); } } $blank_img_path = "./common/tpl/images/blank.gif"; $widget_code = sprintf('', $blank_img_path, $widget, implode(' ',$attribute)); // 코드 출력 $this->add('widget_code', $widget_code); } /** * @brief 선택된 위젯 - 스킨의 컬러셋을 return **/ function procWidgetGetColorsetList() { $widget = Context::get('selected_widget'); $skin = Context::get('skin'); $path = sprintf('./widgets/%s/', $widget); $oModuleModel = &getModel('module'); $skin_info = $oModuleModel->loadSkinInfo($path, $skin); for($i=0;$icolorset);$i++) { $colorset = sprintf('%s|@|%s', $skin_info->colorset[$i]->name, $skin_info->colorset[$i]->title); $colorset_list[] = $colorset; } if(count($colorset_list)) $colorsets = implode("\n", $colorset_list); $this->add('colorset_list', $colorsets); } } ?>