📄 index.php
字号:
<?php /* ROLES $Id: index.php,v 1.8.4.2 2007/03/06 00:34:44 merlinyoda Exp $ */if (!defined('DP_BASE_DIR')){ die('You should not access this file directly.');}$AppUI->savePlace();// pull all the key types$perms =& $AppUI->acl();// Get the permissions for this module$canAccess = $perms->checkModule('roles', "access");if (! $canAccess) { $AppUI->redirect("m=public&a=access_denied");}$canRead = $perms->checkModule('roles', "view");$canAdd = $perms->checkModule('roles', "add");$canEdit = $perms->checkModule('roles', "edit");$canDelete = $perms->checkModule('roles', "delete");$crole =& new CRole;$roles = $crole->getRoles();$role_id = dPgetParam( $_GET, 'role_id', 0 );$modules = $sql = "SELECT mod_id, mod_name FROM modules WHERE mod_active > 0 ORDER BY mod_directory";$modules = arrayMerge( array( '0'=>'All' ), db_loadHashList( $sql ) );// setup the title block$titleBlock = new CTitleBlock( 'Roles', 'main-settings.png', $m, "$m.$a" );$titleBlock->addCrumb( "?m=system", "System Admin" );$titleBlock->show();$crumbs = array();$crumbs["?m=system"] = "System Admin";?><script language="javascript"><?php// security improvement:// some javascript functions may not appear on client side in case of user not having write permissions// else users would be able to arbitrarily run 'bad' functionsif ($canDelete) {?>function delIt(id) { if (confirm( 'Are you sure you want to delete this?' )) { f = document.roleFrm; f.del.value = 1; f.role_id.value = id; f.submit(); }}<?php } ?></script><table border="0" cellpadding="2" cellspacing="1" width="100%" class="tbl"><tr> <th> </th> <th><?php echo $AppUI->_('Role ID');?></th> <th><?php echo $AppUI->_('Description');?></th> <th> </th></tr><?phpfunction showRow( $role=null ) { global $canEdit, $canDelete, $role_id, $AppUI, $modules; $CR = "\n"; $id = $role['id']; $name = $role['value']; $description = $role['name']; $s = '<tr>'.$CR; if (($role_id == $id || $id == 0) && $canEdit) { // edit form $s .= '<form name="roleFrm" method="post" action="?m=system&u=roles">'.$CR; $s .= '<input type="hidden" name="dosql" value="do_role_aed" />'.$CR; $s .= '<input type="hidden" name="del" value="0" />'.$CR; $s .= '<input type="hidden" name="role_id" value="'.$id.'" />'.$CR; $s .= '<td> </td>'; $s .= '<td valign="top"><input type="text" name="role_name" value="'.$name.'" class="text" /></td>'; $s .= "<td valign='top'><input type='text' name='role_description' class='text' value='$description'></td>"; $s .= '<td><input type="submit" value="'.$AppUI->_($id ? 'edit' : 'add').'" class="button" /></td>'; } else { $s .= '<td width="50" valign="top">'; if ($canEdit) { $s .= '<a href="?m=system&u=roles&role_id='.$id.'">'; $s .= dPshowImage('./images/icons/stock_edit-16.png'); $s .= "</a><a href='?m=system&u=roles&a=viewrole&role_id=$id&tab=1' title=''>"; $s .= dPshowImage('images/obj/lock.gif'); $s .= "</a>"; } if ($canDelete) { $s .= "<a href='javascript:delIt($id)'>"; $s .= dPshowImage('images/icons/stock_delete-16.png'); $s .= "</a>"; } $s .= "</td>$CR"; $s .= '<td valign="top">'.$name.'</td>'.$CR; $s .= '<td valign="top">'.$AppUI->_($description).'</td>'.$CR; $s .= '<td valign="top" width="16">'; $s .= " "; $s .= '</td>'.$CR; } $s .= '</tr>'.$CR; return $s;}// do the modules that are installed on the system$s = '';foreach ($roles as $row) { echo showRow( $row );}// add in the new key row:if ($role_id == 0) { echo showRow();}?></table><?php // Do all the tab stuff. ?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -