mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-28 23:59:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@425 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
01ec58be2b
commit
c6bcfebded
5 changed files with 6 additions and 6 deletions
|
|
@ -3,6 +3,6 @@
|
||||||
<actions>
|
<actions>
|
||||||
<action name="dispDownloadedPluginList" type="view" standalone="true" admin_index="true" />
|
<action name="dispDownloadedPluginList" type="view" standalone="true" admin_index="true" />
|
||||||
<action name="dispPluginInfo" type="view" standalone="true" />
|
<action name="dispPluginInfo" type="view" standalone="true" />
|
||||||
<action name="dispMakeCode" type="view" standalone="true" />
|
<action name="dispGenerateCode" type="view" standalone="true" />
|
||||||
</actions>
|
</actions>
|
||||||
</module>
|
</module>
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @brief 플러그인(plugin) 모듈의 기본 언어팩
|
* @brief 플러그인(plugin) 모듈의 기본 언어팩
|
||||||
**/
|
**/
|
||||||
|
|
||||||
$lang->cmd_make_code = '코드생성';
|
$lang->cmd_generate_code = '코드생성';
|
||||||
|
|
||||||
$lang->plugin_maker = '플러그인 제작자';
|
$lang->plugin_maker = '플러그인 제작자';
|
||||||
$lang->plugin_history = '변경사항';
|
$lang->plugin_history = '변경사항';
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
/**
|
/**
|
||||||
* @brief 플러그인의 상세 정보(conf/info.xml)를 팝업 출력
|
* @brief 플러그인의 상세 정보(conf/info.xml)를 팝업 출력
|
||||||
**/
|
**/
|
||||||
function dispMakeCode() {
|
function dispGenerateCode() {
|
||||||
// 선택된 플러그인 정보를 구함
|
// 선택된 플러그인 정보를 구함
|
||||||
$oPluginModel = &getModel('plugin');
|
$oPluginModel = &getModel('plugin');
|
||||||
$plugin_info = $oPluginModel->getPluginInfo(Context::get('selected_plugin'));
|
$plugin_info = $oPluginModel->getPluginInfo(Context::get('selected_plugin'));
|
||||||
|
|
@ -60,7 +60,7 @@
|
||||||
$this->setLayoutFile('popup_layout');
|
$this->setLayoutFile('popup_layout');
|
||||||
|
|
||||||
// 템플릿 파일 지정
|
// 템플릿 파일 지정
|
||||||
$this->setTemplateFile('plugin_make_code');
|
$this->setTemplateFile('plugin_generate_code');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
<td>{$lang->author}</td>
|
<td>{$lang->author}</td>
|
||||||
<td>{$lang->date}</td>
|
<td>{$lang->date}</td>
|
||||||
<td>{$lang->path}</td>
|
<td>{$lang->path}</td>
|
||||||
<td>{$lang->cmd_make_code}</td>
|
<td>{$lang->cmd_generate_code}</td>
|
||||||
<td>{$lang->plugin_info}</td>
|
<td>{$lang->plugin_info}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<!--@foreach($plugin_list as $key => $val)-->
|
<!--@foreach($plugin_list as $key => $val)-->
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
<td><a href="#" onclick="window.open('{$val->author->homepage}')">{$val->author->name}</a></td>
|
<td><a href="#" onclick="window.open('{$val->author->homepage}')">{$val->author->name}</a></td>
|
||||||
<td>{$val->author->date}</td>
|
<td>{$val->author->date}</td>
|
||||||
<td>{$val->path}</td>
|
<td>{$val->path}</td>
|
||||||
<td><a href="#" onclick="winopen('{getUrl('','module','plugin','act','dispMakeCode','selected_plugin',$val->plugin)}','plugin_code_make','width=10,height=10,toolbars=no,scrollbars=yes,resizable=yes');return false">{$lang->cmd_make_code}</a></td>
|
<td><a href="#" onclick="winopen('{getUrl('','module','plugin','act','dispGenerateCode','selected_plugin',$val->plugin)}','plugin_code_generate','width=10,height=10,toolbars=no,scrollbars=yes,resizable=yes');return false">{$lang->cmd_generate_code}</a></td>
|
||||||
<td><a href="#" onclick="winopen('{getUrl('','module','plugin','act','dispPluginInfo','selected_plugin',$val->plugin)}','plugin_info','width=10,height=10,toolbars=no,scrollbars=yes,resizable=yes');return false">{$lang->cmd_view}</a></td>
|
<td><a href="#" onclick="winopen('{getUrl('','module','plugin','act','dispPluginInfo','selected_plugin',$val->plugin)}','plugin_info','width=10,height=10,toolbars=no,scrollbars=yes,resizable=yes');return false">{$lang->cmd_view}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue