git-svn-id: http://xe-core.googlecode.com/svn/trunk@440 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-14 12:07:09 +00:00
parent 6c66636dc9
commit b1a8c6406f
8 changed files with 69 additions and 85 deletions

View file

@ -0,0 +1,7 @@
<filter name="generate_code" module="plugin" act="procGenerateCode">
<response callback_func="completeGenerateCode">
<tag name="error" />
<tag name="message" />
<tag name="plugin_code" />
</response>
</filter>

View file

@ -0,0 +1,7 @@
/* 생성된 코드를 textarea에 출력 */
function completeGenerateCode(ret_obj) {
var plugin_code = ret_obj["plugin_code"];
var zone = xGetElementById("plugin_code");
zone.value = plugin_code;
}

View file

@ -1,6 +1,7 @@
<form action="./" method="post">
<input type="hidden" name="module" value="{$module}" />
<input type="hidden" name="act" value="dispGeneratedCode" />
<!--%import("filter/generate_code.xml")-->
<!--%import("js/admin.js")-->
<form action="./" method="get" onsubmit="return procFilter(this, generate_code);">
<input type="hidden" name="selected_plugin" value="{$selected_plugin}" />
<table border="1" width="400">
@ -13,37 +14,41 @@
<th>{$lang->plugin}</th>
<td>{$plugin_info->title} ver {$plugin_info->version}</td>
</tr>
<!--@foreach($plugin_info->extra_var as $id => $var)-->
<tr>
<th rowspan="2">{$var->name}</th>
<!--@if($var->type == "text")-->
<td><input type="text" name="{$id}" value="" /></td>
<!--@elseif($var->type == "textarea")-->
<td><textarea name="{$id}"></textarea></td>
<!--@elseif($var->type == "select")-->
<td>
<select name="{$id}">
<!--@foreach($var->options as $key => $val)-->
<option value="{$key}">{$val}</option>
<!--@end-->
</select>
</td>
<!--@elseif($var->type == "mid_list")-->
<td>
<!--@foreach($mid_list as $key => $val)-->
<div>
<input type="checkbox" value="{$key}" id="chk_mid_list_{$key}" />
<label for="chk_mid_list_{$key}">{$key} ({$val->browser_title})</label>
</div>
<!--@end-->
</td>
<!--@foreach($plugin_info->extra_var as $id => $var)-->
<tr>
<th rowspan="2">{$var->name}</th>
<!--@if($var->type == "text")-->
<td><input type="text" name="{$id}" value="" /></td>
<!--@elseif($var->type == "textarea")-->
<td><textarea name="{$id}"></textarea></td>
<!--@elseif($var->type == "select")-->
<td>
<select name="{$id}">
<!--@foreach($var->options as $key => $val)-->
<option value="{$key}">{$val}</option>
<!--@end-->
</tr>
<tr>
<td>{$var->description}</td>
</tr>
</select>
</td>
<!--@elseif($var->type == "mid_list")-->
<td>
<!--@foreach($mid_list as $key => $val)-->
<div>
<input type="checkbox" value="{$key}" name="{$var->name}" id="chk_mid_list_{$key}" />
<label for="chk_mid_list_{$key}">{$key} ({$val->browser_title})</label>
</div>
<!--@end-->
</td>
<!--@end-->
</tr>
<tr>
<td>{$var->description}</td>
</tr>
<!--@end-->
<tr>
<td colspan="2"><textarea id="plugin_code" style="width:100%;height:100px;"></textarea></td>
</tr>
<tr>
<td>
<a href="#" onclick="self.close()">{$lang->cmd_close}</a>

View file

@ -1,29 +0,0 @@
<table border="1" width="400">
<col width="100" />
<col width="300" />
<tr>
<th colspan="2">{$lang->cmd_generate_code}</th>
</tr>
<tr>
<th>{$lang->plugin}</th>
<td>{$plugin_info->title} ver {$plugin_info->version}</td>
</tr>
<tr>
<th rowspan="2">{$lang->plugin_code}</th>
<td height="150">
&lt;div plugin="{$selected_plugin}"
<!--@foreach($vars as $key=>$val)-->
{$key}=&quot;{$val}&quot;&nbsp;
<!--@end-->
&gt;&lt;/div&gt;
</td>
</tr>
<tr>
<td>{$lang->about_plugin_code}</td>
</tr>
<tr>
<td colspan="2">
<a href="#" onclick="self.close()">{$lang->cmd_close}</a>
</td>
</tr>
</table>