⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 module_permissions.php

📁 groupoffice
💻 PHP
字号:
<?php/*   Copyright Intermesh 2003   Author: Merijn Schering <mschering@intermesh.nl>   Version: 1.0 Release date: 08 July 2003   This program is free software; you can redistribute it and/or modify it   under the terms of the GNU General Public License as published by the   Free Software Foundation; either version 2 of the License, or (at your   option) any later version. */require_once("../../Group-Office.php");$GO_SECURITY->authenticate(true);$module = $GO_MODULES->get_module($_REQUEST['module_id']);$page_title=$module['id'];require_once($GO_THEME->theme_path."header.inc");?><form method="post" name="permissions" action="<?php echo $_SERVER['PHP_SELF']; ?>"><input type="hidden" name="close" value="false" /><input type="hidden" name="module_id" value="<?php echo $_REQUEST['module_id']; ?>" /><?php$tabtable = new tabtable('module_tab', $module['id'],'100%','','120','',true);$tabtable->add_tab('read', $strReadRights);$tabtable->add_tab('write', $strWriteRights);$tabtable->print_head();switch($tabtable->get_active_tab_id()){		case 'read':		print_acl($module["acl_read"]);	break;		case 'write':		print_acl($module["acl_write"]);	break;}echo '<br /><br />';$button = new button($cmdClose, 'javascript:window.close()');echo $button->get_html();$tabtable->print_foot();?></form><?phprequire_once($GO_THEME->theme_path."footer.inc");?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -