mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5300 201d5d3c-b55e-5fd7-737f-ddc643e51545
116 lines
5.7 KiB
HTML
116 lines
5.7 KiB
HTML
<table cellspacing="0" class="adminTable">
|
|
<caption>{nl2br($_caption)}</caption>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->widget}</div></th>
|
|
<td>
|
|
{$widget_info->title} ver {$widget_info->version}
|
|
<!--@if($widget_info->author->description)-->
|
|
<div class="widget_description">{nl2br(trim($widget_info->author->description))}</div>
|
|
<!--@end-->
|
|
</td>
|
|
</tr>
|
|
<!--@if(count($skin_list))-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->skin}</div></th>
|
|
<td>
|
|
<select name="skin" onchange="doDisplaySkinColorset(this);return false;" id="widget_skin">
|
|
<option value=""> </option>
|
|
<!--@foreach($skin_list as $key => $val)-->
|
|
<option value="{$key}">{$val->title} ({$key})</option>
|
|
<!--@end-->
|
|
</select>
|
|
|
|
<div id="colorset_area" style="display:none">
|
|
<div class="header">{$lang->colorset}</div>
|
|
<div class="footer">
|
|
<select name="colorset" id="widget_colorset">
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!--@end-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->widget_cache}</div></th>
|
|
<td>
|
|
<input type="text" name="widget_cache" value="0" class="inputTypeText" size="2" />{$lang->unit_min}
|
|
<p>{$lang->about_widget_cache}</p>
|
|
</td>
|
|
</tr>
|
|
<!--@foreach($widget_info->extra_var as $id => $var)-->
|
|
|
|
<!--@if($var->group && ((!$group) || $group != $var->group))-->
|
|
{@$group = $var->group}
|
|
</table>
|
|
<table cellspacing="0" class="adminTable">
|
|
<caption>{$group}</caption>
|
|
<!--@end-->
|
|
|
|
<tr class="row{$cycle_idx}">
|
|
<th scope="row">
|
|
<div>
|
|
{$var->name}
|
|
<!--@if($var->type == "mid_list")-->
|
|
<input type="checkbox" onclick="XE.checkboxToggleAll('{$id}'); return false;" />
|
|
<!--@end-->
|
|
</div>
|
|
</th>
|
|
<td>
|
|
<!--@if($var->type == "text")-->
|
|
<input type="text" name="{$id}" value="" class="inputTypeText w400" />
|
|
|
|
<!--@elseif($var->type == "textarea")-->
|
|
<textarea name="{$id}" class="inputTypeTextArea w400"></textarea>
|
|
|
|
<!--@elseif($var->type == "select")-->
|
|
<select name="{$id}">
|
|
<!--@foreach($var->options as $key => $val)-->
|
|
<option value="{$key}">{$val}</option>
|
|
<!--@end-->
|
|
</select>
|
|
|
|
<!--@elseif($var->type == "mid_list")-->
|
|
|
|
<!--@foreach($mid_list as $module_category_srl => $modules)-->
|
|
<!--@if($modules->title)-->
|
|
<div class="widget_title">{$modules->title}</div>
|
|
<!--@else-->
|
|
<div class="widget_title">{$lang->none_category}</div>
|
|
<!--@end-->
|
|
|
|
<!--@foreach($modules->list as $key => $val)-->
|
|
<div class="widget_mid_list">
|
|
<input type="checkbox" value="{$key}" name="{$id}" id="chk_mid_list_{$key}" />
|
|
<label for="chk_mid_list_{$key}">{$key} ({$val->browser_title})</label>
|
|
</div>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
|
|
<!--@elseif($var->type == "module_srl_list")-->
|
|
<input type="hidden" name="{$id}" id="{$id}" value="" />
|
|
<select name="_{$id}" id="_{$id}" size="8" class="w300 fl"></select>
|
|
<ul class="midCommand">
|
|
<li><a href="{getUrl('','module','module','act','dispModuleAdminSelectList','id',$id)}" onclick="popopen(this.href, 'ModuleSelect');return false;" class="button blue"><span>{$lang->cmd_insert}</span></a></li>
|
|
<li><a href="#" onclick="midMoveUp('{$id}');return false;" class="button black"><span>{$lang->cmd_move_up}</span></a></li>
|
|
<li><a href="#" onclick="midMoveDown('{$id}');return false;" class="button black"><span>{$lang->cmd_move_down}</span></a></li>
|
|
<li><a href="#" onclick="midRemove('{$id}');return false;" class="button red"><span>{$lang->cmd_delete}</span></a></li>
|
|
</ul>
|
|
<script type="text/javascript">
|
|
if(typeof(getModuleSrlList)!=='undefined') {
|
|
doAddWindowLoadEventLoader( function() { getModuleSrlList('{$id}'); } );
|
|
}
|
|
</script>
|
|
<!--@elseif($var->type == "mid")-->
|
|
<input type="hidden" name="{$id}" id="{$id}" value="" />
|
|
<input type="text" name="_{$id}" id="_{$id}" value="" class="inputTypeText w300" readonly="readonly"/><a href="{getUrl('','module','module','act','dispModuleAdminSelectList','id',$id,'type','single')}" onclick="popopen(this.href, 'ModuleSelect');return false;" class="button blue"><span>{$lang->cmd_select}</span></a>
|
|
<script type="text/javascript">
|
|
if(typeof(getModuleSrlList)!=='undefined') {
|
|
doAddWindowLoadEventLoader( function() { getModuleSrl('{$id}'); });
|
|
}
|
|
</script>
|
|
<!--@end-->
|
|
<p class="clear">{nl2br($var->description)}</p>
|
|
</td>
|
|
</tr>
|
|
<!--@end-->
|
|
</table>
|