mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2892 201d5d3c-b55e-5fd7-737f-ddc643e51545
42 lines
1.7 KiB
HTML
42 lines
1.7 KiB
HTML
<!--%import("filter/update_layout_code.xml")-->
|
|
<!--%import("filter/reset_layout_code.xml")-->
|
|
|
|
<!--#include("header.html")-->
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<caption>{$selected_layout->title} ver {$selected_layout->version} ({$selected_layout->layout})</caption>
|
|
<tbody>
|
|
<tr>
|
|
<td>{nl2br($lang->about_layout_code)}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<caption>{$lang->widget}</caption>
|
|
<tr>
|
|
<td>
|
|
<!--@foreach($widget_list as $widget)-->
|
|
<a href="{getUrl('','module','widget','act','dispWidgetGenerateCode','selected_widget',$widget->widget,'module_srl',$module_srl)}" onclick="popopen(this.href,'GenerateCodeInPage');return false;" class="button"><span>{$widget->title}</span></a>
|
|
<!--@end-->
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="gap1">
|
|
<form id="fo_layout" action="./" method="post" onsubmit="return procFilter(this, update_layout_code);">
|
|
<input type="hidden" name="layout_srl" value="{$layout_srl}" />
|
|
<input type="hidden" name="module" value="layout" />
|
|
<input type="hidden" name="act" value="" />
|
|
|
|
<div class="layout_editor_box">
|
|
<textarea name="code" class="layout_editor">{htmlspecialchars($layout_code)}</textarea>
|
|
</div>
|
|
|
|
<div class="tRight gap1">
|
|
<span class="button"><input type="submit" value="{$lang->cmd_save}" /></span>
|
|
<a href="#" onclick="doPreviewLayoutCode();return false" class="button"><span>{$lang->cmd_preview}</span></a>
|
|
<a href="#" onclick="doResetLayoutCode('{$layout_srl}');return false" class="button"><span>{$lang->cmd_reset}</span></a>
|
|
</div>
|
|
</form>
|
|
</div>
|