本文整理汇总了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;
}