mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@382 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
1a0f41adcd
commit
c901dde372
4 changed files with 46 additions and 0 deletions
|
|
@ -3,5 +3,6 @@
|
||||||
<grants />
|
<grants />
|
||||||
<actions>
|
<actions>
|
||||||
<action name="dispMessage" type="view" standalone="true" index="true"/>
|
<action name="dispMessage" type="view" standalone="true" index="true"/>
|
||||||
|
<action name="dispConfig" type="view" standalone="true" admin_index="true"/>
|
||||||
</actions>
|
</actions>
|
||||||
</module>
|
</module>
|
||||||
|
|
|
||||||
6
modules/message/tpl.admin/error.html
Normal file
6
modules/message/tpl.admin/error.html
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{'<?xml version="1.0" encoding="utf-8" ?>'}
|
||||||
|
|
||||||
|
<response>
|
||||||
|
<error>{$error}</error>
|
||||||
|
<message><![CDATA[{$message}]]></message>
|
||||||
|
</response>
|
||||||
7
modules/message/tpl.admin/filter/insert_config.xml
Normal file
7
modules/message/tpl.admin/filter/insert_config.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
<filter name="insert_config" module="rss" act="procInsertConfig" confirm_msg_code="confirm_submit">
|
||||||
|
<form />
|
||||||
|
<response>
|
||||||
|
<tag name="error" />
|
||||||
|
<tag name="message" />
|
||||||
|
</response>
|
||||||
|
</filter>
|
||||||
32
modules/message/tpl.admin/index.html
Normal file
32
modules/message/tpl.admin/index.html
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
<!--%import("filter/insert_config.xml")-->
|
||||||
|
|
||||||
|
<form action="./" method="get" onsubmit="return procFilter(this, insert_config)">
|
||||||
|
<table border="1">
|
||||||
|
<tr>
|
||||||
|
<th rowspan="2">{$lang->rss_disable}</th>
|
||||||
|
<td><input type="checkbox" name="rss_disable" value="Y" <!--@if($config->rss_disable=="Y")-->checked="true"<!--@end--> />
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>{$lang->about_rss_disable}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th rowspan="2">{$lang->rss_type}</th>
|
||||||
|
<td>
|
||||||
|
<select name="rss_type">
|
||||||
|
<!--@foreach($rss_types as $key => $val)-->
|
||||||
|
<option value="{$key}" <!--@if($key==$config->rss_type)-->selected="true"<!--@end-->>{$val}</option>
|
||||||
|
<!--@end-->
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>{$lang->about_rss_type}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
<input type="button" value="{$lang->cmd_cancel}" onclick="location.href='{getUrl('act','')}'" />
|
||||||
|
<input type="submit" value="{$lang->cmd_registration}" accesskey="s" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</form>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue