mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-26 14:49:56 +09:00
Syndication API를 XE Core에 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7640 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ee1fc6237a
commit
1675d4c8d9
38 changed files with 1025 additions and 0 deletions
56
modules/syndication/tpl/config.html
Normal file
56
modules/syndication/tpl/config.html
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
<!--%import("css/syndication.css")-->
|
||||
<!--%import("js/syndication.js")-->
|
||||
<!--%import("filter/insert_service.xml")-->
|
||||
|
||||
<h3 class="xeAdmin">{$lang->syndication} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
<p class="summary">{$lang->about_syndication}</p>
|
||||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, insert_service);">
|
||||
<input type="hidden" name="year" value="{$year}" />
|
||||
<table cellspacing="0" class="rowTable">
|
||||
<tr>
|
||||
<th scope="row"><div>{$lang->my_syndication_url}</div></th>
|
||||
<td>
|
||||
http://<input type="text" name="site_url" value="{$site_url}" class="inputTypeText siteUrl" />
|
||||
<p>{$lang->about_my_syndication_url}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><div>{$lang->syndication_service}</div></th>
|
||||
<td>
|
||||
<ul class="syndiService">
|
||||
<!--@foreach($services as $key => $val)-->
|
||||
<li>
|
||||
<input type="checkbox" name="target_services" value="{$val->service}" id="target_service_{$val->service}" <!--@if($val->selected)-->checked="checked"<!--@end--> />
|
||||
<label for="target_service_{$val->service}">{$val->service}</label>
|
||||
</li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<p>{$lang->about_syndication}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><div>{$lang->except_module}</div></th>
|
||||
<td>
|
||||
<select name="_except_module" id="_except_module" size="10" class="exceptModuleList">
|
||||
{@$except_module_srls = array()}
|
||||
<!--@foreach($except_module as $v)-->
|
||||
{@$except_module_srls[] = $v->module_srl}
|
||||
<option value="{$v->module_srl}">{$v->browser_title} ({$v->mid})</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<ul class="midCommand">
|
||||
<li><a href="{getUrl('','module','module','act','dispModuleSelectList','id','except_module')}" onclick="popopen(this.href, 'ModuleSelect');return false;" class="button blue"><span>{$lang->cmd_insert}</span></a></li>
|
||||
<li><a href="#" onclick="removeExceptModule('except_module');return false;" class="button red"><span>{$lang->cmd_delete}</span></a></li>
|
||||
</ul>
|
||||
<p>{$lang->about_except_module}</p>
|
||||
<input type="hidden" name="except_module" id="except_module" value="{implode(',',$except_module_srls)}" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th colspan="2" class="button">
|
||||
<span class="button black strong"><input type="submit" value="{$lang->cmd_apply}" accesskey="s" /></span>
|
||||
</th>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
Loading…
Add table
Add a link
Reference in a new issue