2009.03.15 10:25:13 (*.34.227.144)
14,234
1. 확장변수 유무
-- 원래 : <!--@if($module_info->extra_vars)-->
-- 변경 : <!--@if($oDocument->isExtraVarsExists())-->
2. 확장변수 루프
-- 원래 : <!--@foreach($module_info->extra_vars as $key => $val)-->
-- 변경 : <!--@foreach($oDocument->getExtraValue() as $key => $val)-->
3. 확장변수 값 출력
-- 원래 : <!--#include("./extra_var_value.html")-->
-- 변경 : {$val->getValueHtml()}
4. 확장변수 폼 출력
-- 원래 : <!--#include("./extra_var_form.html")-->
-- 변경 : {$val->getFormHtml("원하는클래스명")}
배포자 zero
최근 수정일 : 2009-03-15 11:06:02 - 백성찬(白星燦)