mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6112 201d5d3c-b55e-5fd7-737f-ddc643e51545
93 lines
4.2 KiB
HTML
93 lines
4.2 KiB
HTML
<!--%import("popup.js")-->
|
|
<!--%import("popup.css")-->
|
|
<!--%import("../lang")-->
|
|
|
|
<div id="popHeader">
|
|
<h3 class="xeAdmin">{$component_info->title} ver. {$component_info->version}</h3>
|
|
</div>
|
|
|
|
<form action="./" method="get" onSubmit="return false" id="fo">
|
|
|
|
<div id="popBody">
|
|
<table cellspacing="0" class="rowTable">
|
|
<col width="100" />
|
|
<col />
|
|
|
|
<tr>
|
|
<th scope="row"><div>{$lang->image_url}</div></th>
|
|
<td><input type="text" id="image_url" value="{url_decode($manual_url)}" onblur="getImageScale();" class="inputTypeText w400" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->image_scale}</div></th>
|
|
<td>
|
|
<ul>
|
|
<li><input type="text" id="width" value="0" size="4" class="inputTypeText" onblur="setScale('width');return false;" />px </li>
|
|
<li><input type="text" id="height" value="0" size="4" class="inputTypeText" onblur="setScale('height');return false;" />px </li>
|
|
<li><a href="#" onclick="getImageScale(); return false;" class="button"><span>{$lang->cmd_get_scale}</span></a></li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>URL</div></th>
|
|
<td><input type="text" id="link_url" value="" class="inputTypeText w400"/></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->urllink_open_window}</div></th>
|
|
<td><input type="checkbox" id="open_window" value="Y" /> {$lang->about_url_link_open_window}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->image_alt}</div></th>
|
|
<td><input type="text" id="image_alt" value="" class="inputTypeText w400"/></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->image_align}</div></th>
|
|
<td>
|
|
<div class="image_align">
|
|
<input type="radio" name="align" value="" id="align_normal" checked="checked"/>
|
|
<label for="align_normal">
|
|
<img src="./images/align_normal.gif" alt="{$lang->image_align_normal}" />
|
|
{$lang->image_align_normal}
|
|
</label>
|
|
</div>
|
|
|
|
<div class="image_align">
|
|
<input type="radio" name="align" value="left" id="align_left" />
|
|
<label for="align_left">
|
|
<img src="./images/align_left.gif" alt="{$lang->image_align_left}" />
|
|
{$lang->image_align_left}
|
|
</label>
|
|
</div>
|
|
|
|
<div class="image_align">
|
|
<input type="radio" name="align" value="middle" id="align_middle" />
|
|
<label for="align_middle">
|
|
<img src="./images/align_middle.gif" alt="{$lang->image_align_middle}" />
|
|
{$lang->image_align_middle}
|
|
</label>
|
|
</div>
|
|
|
|
<div class="image_align">
|
|
<input type="radio" name="align" value="right" id="align_right" />
|
|
<label for="align_right">
|
|
<img src="./images/align_right.gif" alt="{$lang->image_align_right}" />
|
|
{$lang->image_align_right}
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->image_border}</div></th>
|
|
<td><input type="text" id="image_border" value="0" size="2" class="inputTypeText" />px</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->image_margin}</div></th>
|
|
<td><input type="text" id="image_margin" value="0" size="2" class="inputTypeText" />px</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div id="popFooter" class="tCenter">
|
|
<a href="#" onclick="insertImage()" class="button black strong"><span>{$lang->cmd_insert}</span></a>
|
|
<a href="#" onclick="winopen('./?module=editor&act=dispEditorComponentInfo&component_name={$component_info->component_name}','ComponentInfo','left=10,top=10,width=10,height=10,resizable=no,scrollbars=no,toolbars=no');return false;" class="button"><span>{$lang->about_component}</span></a>
|
|
</div>
|
|
|
|
</form>
|