本文整理匯總了PHP中AuthService::updateDefaultRights方法的典型用法代碼示例。如果您正苦於以下問題:PHP AuthService::updateDefaultRights方法的具體用法?PHP AuthService::updateDefaultRights怎麽用?PHP AuthService::updateDefaultRights使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類AuthService
的用法示例。
在下文中一共展示了AuthService::updateDefaultRights方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: createUserObject
/**
* Instantiate a new AbstractAjxpUser
*
* @param String $userId
* @return AbstractAjxpUser
*/
public function createUserObject($userId)
{
$userId = AuthService::filterUserSensitivity($userId);
$abstractUser = $this->instantiateAbstractUserImpl($userId);
if (!$abstractUser->storageExists()) {
AuthService::updateDefaultRights($abstractUser);
}
AuthService::updateAutoApplyRole($abstractUser);
AuthService::updateAuthProvidedData($abstractUser);
return $abstractUser;
}
示例2: isset
if ($autoCreate && !AuthService::userExists($login["name"])) {
$isAdmin = isset($login["right"]) && $login["right"] == "admin";
AuthService::createUser($login["name"], $login["password"], $isAdmin);
}
if (isset($AJXP_GLUE_GLOBALS["checkPassord"]) && $AJXP_GLUE_GLOBALS["checkPassord"] === TRUE) {
$result = AuthService::logUser($login["name"], $login["password"], false, false, -1);
} else {
$result = AuthService::logUser($login["name"], $login["password"], true);
}
// Update default rights (this could go in the trunk...)
if ($result == 1) {
$userObject = AuthService::getLoggedUser();
if ($userObject->isAdmin()) {
AuthService::updateAdminRights($userObject);
} else {
AuthService::updateDefaultRights($userObject);
}
$userObject->save("superuser");
}
}
break;
case 'logout':
$newSession = new SessionSwitcher("AjaXplorer");
global $_SESSION;
$_SESSION = array();
$result = TRUE;
break;
case 'addUser':
$user = $AJXP_GLUE_GLOBALS["user"];
if (is_array($user)) {
$isAdmin = isset($user["right"]) && $user["right"] == "admin";
示例3: createUserObject
/**
* Instantiate a new AbstractAjxpUser
*
* @param String $userId
* @return AbstractAjxpUser
*/
public function createUserObject($userId)
{
$kvCache = ConfService::getInstance()->getKeyValueCache();
$test = $kvCache->fetch("pydio:user:" . $userId);
if ($test !== false && is_a($test, "AbstractAjxpUser")) {
if ($test->personalRole == null) {
$test->personalRole = $test->roles["AJXP_USR_/" . $userId];
}
$test->recomputeMergedRole();
return $test;
}
$userId = AuthService::filterUserSensitivity($userId);
$abstractUser = $this->instantiateAbstractUserImpl($userId);
if (!$abstractUser->storageExists()) {
AuthService::updateDefaultRights($abstractUser);
}
AuthService::updateAutoApplyRole($abstractUser);
AuthService::updateAuthProvidedData($abstractUser);
$args = array(&$abstractUser);
AJXP_Controller::applyIncludeHook("include.user.updateUserObject", $args);
$kvCache->save("pydio:user:" . $userId, $abstractUser);
return $abstractUser;
}
示例4: createUserObject
/**
* Instantiate a new AJXP_User
*
* @param String $userId
* @return AbstractAjxpUser
*/
function createUserObject($userId)
{
$abstractUser = $this->instantiateAbstractUserImpl($userId);
if (!$abstractUser->storageExists()) {
AuthService::updateDefaultRights($abstractUser);
}
return $abstractUser;
}