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@119 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
a347783ce9
commit
f0edc7f054
16 changed files with 156 additions and 66 deletions
|
|
@ -1,4 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module default_action="dispAdminIndex" manage_action="">
|
||||
<action name="dispAdminIndex" type="view" grant="" />
|
||||
<actions>
|
||||
<action name="dispAdminIndex" type="view" grant="root" />
|
||||
<actions>
|
||||
</module>
|
||||
|
|
@ -14,14 +14,6 @@
|
|||
var $page_count = 10; ///< 페이지의 수
|
||||
var $category_list = NULL; ///< 카테고리 목록
|
||||
|
||||
var $grant_list = array(
|
||||
'list',
|
||||
'view',
|
||||
'write_document',
|
||||
'write_comment',
|
||||
'fileupload',
|
||||
); ///< 권한의 종류를 미리 설정
|
||||
|
||||
var $editor = 'default'; ///< 에디터 종류
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,21 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module default_action="dispContent" manage_action="dispAdminContent">
|
||||
<action name="dispContent" type="view" grant="" />
|
||||
<action name="dispWrite" type="view" grant="" />
|
||||
<action name="dispDelete" type="view" grant="" />
|
||||
<action name="dispCommentReply" type="view" grant="" />
|
||||
<action name="dispCommentModify" type="view" grant="" />
|
||||
<action name="dispCommentDelete" type="view" grant="" />
|
||||
<action name="dispTrackbackDelete" type="view" grant="" />
|
||||
<action name="dispLogin" type="view" grant="" />
|
||||
<action name="dispLogout" type="view" grant="" />
|
||||
<action name="dispMessage" type="view" grant="" />
|
||||
<action name="dispRss" type="view" grant="" />
|
||||
<action name="dispAdminContent" type="view" grant="admin" />
|
||||
<action name="dispAdminBoardInfo" type="view" grant="admin" />
|
||||
<action name="dispAdminInsertBoard" type="view" grant="admin" />
|
||||
<action name="dispAdminDeleteBoard" type="view" grant="admin" />
|
||||
<action name="dispAdminSkinInfo" type="view" grant="admin" />
|
||||
<action name="dispAdminCategoryInfo" type="view" grant="admin" />
|
||||
<action name="dispAdminGrantInfo" type="view" grant="admin" />
|
||||
</module>
|
||||
49
modules/board/conf/module.xml
Normal file
49
modules/board/conf/module.xml
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module default_action="dispContent" manage_action="dispAdminContent">
|
||||
<grants>
|
||||
<grant name="list" default="guest">
|
||||
<title xml:lang="ko">목록</title>
|
||||
<title xml:lang="en">list</title>
|
||||
</grant>
|
||||
<grant name="view" default="guest">
|
||||
<title xml:lang="ko">열람</title>
|
||||
<title xml:lang="en">view</title>
|
||||
</grant>
|
||||
<grant name="write_document" default="guest">
|
||||
<title xml:lang="ko">글 작성</title>
|
||||
<title xml:lang="en">write document</title>
|
||||
</grant>
|
||||
<grant name="write_comment" default="guest">
|
||||
<title xml:lang="ko">댓글 작성</title>
|
||||
<title xml:lang="en">write comment</title>
|
||||
</grant>
|
||||
<grant name="fileupload" default="guest">
|
||||
<title xml:lang="ko">파일 첨부</title>
|
||||
<title xml:lang="en">file upload</title>
|
||||
</grant>
|
||||
<grant name="management" default="root">
|
||||
<title xml:lang="ko">관리</title>
|
||||
<title xml:lang="en">management</title>
|
||||
</grant>
|
||||
</grants>
|
||||
<actions>
|
||||
<action name="dispContent" type="view" />
|
||||
<action name="dispWrite" type="view" />
|
||||
<action name="dispDelete" type="view" />
|
||||
<action name="dispCommentReply" type="view" />
|
||||
<action name="dispCommentModify" type="view" />
|
||||
<action name="dispCommentDelete" type="view" />
|
||||
<action name="dispTrackbackDelete" type="view" />
|
||||
<action name="dispLogin" type="view" />
|
||||
<action name="dispLogout" type="view" />
|
||||
<action name="dispMessage" type="view" />
|
||||
<action name="dispRss" type="view" />
|
||||
<action name="dispAdminContent" type="view" grant="root" />
|
||||
<action name="dispAdminBoardInfo" type="view" grant="root" />
|
||||
<action name="dispAdminInsertBoard" type="view" grant="root" />
|
||||
<action name="dispAdminDeleteBoard" type="view" grant="root" />
|
||||
<action name="dispAdminSkinInfo" type="view" grant="root" />
|
||||
<action name="dispAdminCategoryInfo" type="view" grant="root" />
|
||||
<action name="dispAdminGrantInfo" type="view" grant="root" />
|
||||
</actions>
|
||||
</module>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module default_action="dispIntroduce" manage_action="">
|
||||
<action name="dispIntroduce" type="view" grant="" />
|
||||
<action name="dispInstallForm" type="view" grant="" />
|
||||
<action name="procInstall" type="controller" grant="" />
|
||||
</module>
|
||||
9
modules/install/conf/module.xml
Normal file
9
modules/install/conf/module.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module default_action="dispIntroduce">
|
||||
<grants />
|
||||
<actions>
|
||||
<action name="dispIntroduce" type="view" grant="guest" />
|
||||
<action name="dispInstallForm" type="view" grant="guest" />
|
||||
<action name="procInstall" type="controller" grant="guest" />
|
||||
</actions>
|
||||
</module>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module version="0.1">
|
||||
<action name="viewIntroduce" type="view" default="true" />
|
||||
<action name="viewDBInfoForm" type="view" />
|
||||
<action name="doInstall" type="controller" />
|
||||
</module>
|
||||
8
modules/member/conf/module.xml
Normal file
8
modules/member/conf/module.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module version="0.1" default_action="viewIntroduce" >
|
||||
<actions>
|
||||
<action name="viewIntroduce" type="view" />
|
||||
<action name="viewDBInfoForm" type="view" />
|
||||
<action name="doInstall" type="controller" />
|
||||
</actions>
|
||||
</module>
|
||||
|
|
@ -1,4 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module default_action="dispContent" manage_action="">
|
||||
<action name="dispContent" type="view" grant="" />
|
||||
<actions>
|
||||
<action name="dispContent" type="view" grant="guest" />
|
||||
</actions>
|
||||
</module>
|
||||
|
|
@ -14,30 +14,49 @@
|
|||
}
|
||||
|
||||
/**
|
||||
* @brief module의 conf/action.xml 을 통해 act값에 해당하는 action type을 return
|
||||
* @brief module의 conf/module.xml 을 통해 grant(권한) 및 action 데이터를 return
|
||||
**/
|
||||
function getActionInfo($module) {
|
||||
function getModuleXmlInfo($module) {
|
||||
$class_path = ModuleHandler::getModulePath($module);
|
||||
if(!$class_path) return;
|
||||
|
||||
$action_xml_file = sprintf("%sconf/action.xml", $class_path);
|
||||
$action_xml_file = sprintf("%sconf/module.xml", $class_path);
|
||||
if(!file_exists($action_xml_file)) return;
|
||||
|
||||
$xml_obj = XmlParser::loadXmlFile($action_xml_file);
|
||||
if(!count($xml_obj->module)) return;
|
||||
|
||||
$output->default_action = $xml_obj->module->attrs->default_action;
|
||||
$output->manage_action = $xml_obj->module->attrs->manage_action;
|
||||
$output->default_action = $xml_obj->module->attrs->default_action; ///< 별도의 action이 지정되지 않으면 호출될 action
|
||||
$output->manage_action = $xml_obj->module->attrs->manage_action; ///< 관리자용으로 사용될 기본 action
|
||||
|
||||
if(is_array($xml_obj->module->action)) $action_list = $xml_obj->module->action;
|
||||
else $action_list[] = $xml_obj->module->action;
|
||||
$grants = $xml_obj->module->grants->grant; ///< 권한 정보 (없는 경우도 있음)
|
||||
$actions = $xml_obj->module->actions->action; ///< action list (필수)
|
||||
|
||||
// 권한 정보의 정리
|
||||
if(is_array($grants)) $grant_list = $grants;
|
||||
else $grant_list[] = $grants;
|
||||
|
||||
foreach($grant_list as $grant) {
|
||||
$name = $grant->attrs->name;
|
||||
$default = $grant->attrs->default;
|
||||
$title = $grant->title->body;
|
||||
if(!$default) $default = 'guest';
|
||||
|
||||
$output->grant->{$name}->title = $title;
|
||||
$output->grant->{$name}->default = $default;
|
||||
}
|
||||
|
||||
// actions 정리
|
||||
if(is_array($actions)) $action_list = $actions;
|
||||
else $action_list[] = $actions;
|
||||
|
||||
foreach($action_list as $action) {
|
||||
$name = $action->attrs->name;
|
||||
$type = $action->attrs->type;
|
||||
$grant = $action->attrs->grant;
|
||||
$output->{$name}->type = $type;
|
||||
$output->{$name}->grant = $grant;
|
||||
if(!$grant) $grant = 'guest';
|
||||
$output->action->{$name}->type = $type;
|
||||
$output->action->{$name}->grant = $grant;
|
||||
}
|
||||
|
||||
return $output;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue