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@1088 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
486c9cc13d
commit
b5c4ba8299
5 changed files with 23 additions and 8 deletions
|
|
@ -29,8 +29,8 @@
|
|||
$oEditorController->insertComponent('image_link',true);
|
||||
$oEditorController->insertComponent('multimedia_link',true);
|
||||
$oEditorController->insertComponent('poll_maker',true);
|
||||
$oEditorController->insertComponent('image_gallery',true);
|
||||
$oEditorController->insertComponent('quotation',true);
|
||||
$oEditorController->insertComponent('image_gallery',true);
|
||||
$oEditorController->insertComponent('table_maker',true);
|
||||
|
||||
// 에디터 모듈에서 사용할 디렉토리 생성
|
||||
|
|
|
|||
|
|
@ -1 +1,7 @@
|
|||
{$page_content}
|
||||
|
||||
<!--@if($logged_info->is_admin == 'Y')-->
|
||||
<div>
|
||||
<a href="#" onclick="location.href='{getUrl('act','dispPageAdminInsert','module_srl',$module_info->module_srl)}';return false;">{$lang->cmd_modify}</a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
|
|
|||
|
|
@ -14,8 +14,13 @@ function completeInsertPage(ret_obj) {
|
|||
|
||||
alert(message);
|
||||
|
||||
var url = location.href.setQuery('module_srl',module_srl).setQuery('act','dispPageAdminInfo');
|
||||
if(page) url = url.setQuery('page',page);
|
||||
var url = '';
|
||||
if(location.href.getQuery('module')=='admin') {
|
||||
url = location.href.setQuery('module_srl',module_srl).setQuery('act','dispPageAdminInfo');
|
||||
if(page) url = url.setQuery('page',page);
|
||||
} else {
|
||||
url = location.href.setQuery('act','').setQuery('module_srl','');
|
||||
}
|
||||
|
||||
location.href = url;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -78,14 +78,18 @@
|
|||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->content}</th>
|
||||
<td>
|
||||
{$editor}
|
||||
</td>
|
||||
<th colspan="2">{$lang->content}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">{$editor}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<!--@if($module=='admin')-->
|
||||
<input type="button" value="{$lang->cmd_cancel}" onclick="location.href='{getUrl('act','dispPageAdminInfo','module_srl',$module_srl)}'" />
|
||||
<!--@else-->
|
||||
<input type="button" value="{$lang->cmd_cancel}" onclick="location.href='{getUrl('act','')}'" />
|
||||
<!--@end-->
|
||||
<input type="submit" value="{$lang->cmd_registration}" accesskey="s" />
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue