本文整理汇总了PHP中PermissionsManager::deletePermission方法的典型用法代码示例。如果您正苦于以下问题:PHP PermissionsManager::deletePermission方法的具体用法?PHP PermissionsManager::deletePermission怎么用?PHP PermissionsManager::deletePermission使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PermissionsManager
的用法示例。
在下文中一共展示了PermissionsManager::deletePermission方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: PermissionsManager
include_once '../../config/symbini.php';
include_once $serverRoot . '/classes/PermissionsManager.php';
header("Content-Type: text/html; charset=" . $charset);
$action = array_key_exists("action", $_REQUEST) ? $_REQUEST["action"] : "";
$collId = array_key_exists("collid", $_REQUEST) ? $_REQUEST["collid"] : 0;
$permManager = new PermissionsManager();
$isEditor = 0;
if ($SYMB_UID) {
if ($IS_ADMIN || array_key_exists("CollAdmin", $USER_RIGHTS) && in_array($collId, $USER_RIGHTS["CollAdmin"])) {
$isEditor = 1;
}
}
if ($isEditor) {
if (array_key_exists('deladmin', $_GET)) {
$permManager->deletePermission($_GET['deladmin'], 'CollAdmin', $collId);
} elseif (array_key_exists('deleditor', $_GET)) {
$permManager->deletePermission($_GET['deleditor'], 'CollEditor', $collId);
} elseif (array_key_exists('delrare', $_GET)) {
$permManager->deletePermission($_GET['delrare'], 'RareSppReader', $collId);
} elseif (array_key_exists('delidenteditor', $_GET)) {
$permManager->deletePermission($_GET['delidenteditor'], 'CollTaxon', $collId, $_GET['utid']);
if (is_numeric($_GET['utid'])) {
$permManager->deletePermission($_GET['delidenteditor'], 'CollTaxon', $collId, 'all');
}
} elseif ($action == 'Add Permissions for User') {
$rightType = $_POST['righttype'];
if ($rightType == 'admin') {
$permManager->addPermission($_POST['uid'], "CollAdmin", $collId);
} elseif ($rightType == 'editor') {
$permManager->addPermission($_POST['uid'], "CollEditor", $collId);
示例2: trim
include_once $serverRoot . '/classes/ProfileManager.php';
header("Content-Type: text/html; charset=" . $charset);
$loginAs = array_key_exists("loginas", $_REQUEST) ? trim($_REQUEST["loginas"]) : "";
$searchTerm = array_key_exists("searchterm", $_REQUEST) ? trim($_REQUEST["searchterm"]) : "";
$userId = array_key_exists("userid", $_REQUEST) ? $_REQUEST["userid"] : "";
$delRole = array_key_exists("delrole", $_REQUEST) ? $_REQUEST["delrole"] : "";
$tablePk = array_key_exists("tablepk", $_REQUEST) ? $_REQUEST["tablepk"] : "";
$userManager = new PermissionsManager();
if ($isAdmin) {
if ($loginAs) {
$pHandler = new ProfileManager();
$pHandler->setUserName($loginAs);
$pHandler->authenticate();
header("Location: ../index.php");
} elseif ($delRole) {
$userManager->deletePermission($userId, $delRole, $tablePk);
} elseif (array_key_exists("apsubmit", $_POST)) {
foreach ($_POST["p"] as $pname) {
$role = $pname;
$tablePk = '';
if (strpos($pname, '-')) {
$tok = explode('-', $pname);
$role = $tok[0];
$tablePk = $tok[1];
}
$userManager->addPermission($userId, $role, $tablePk);
}
}
}
?>
<html>