本文整理汇总了PHP中UserAccount::LoadArrayByRoleId方法的典型用法代码示例。如果您正苦于以下问题:PHP UserAccount::LoadArrayByRoleId方法的具体用法?PHP UserAccount::LoadArrayByRoleId怎么用?PHP UserAccount::LoadArrayByRoleId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserAccount
的用法示例。
在下文中一共展示了UserAccount::LoadArrayByRoleId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: btnDelete_Click
protected function btnDelete_Click($strFormId, $strControlId, $strParameter)
{
if ($objUserAccountArray = UserAccount::LoadArrayByRoleId($this->objRole->RoleId)) {
$this->btnCancel->Warning = "You cannot delete roles with assigned user accounts.";
} else {
//Before deleting the role, we delete All Authorization Records in RoleEntytyQtype BuiltIn and Custom.
foreach (RoleEntityQtypeBuiltInAuthorization::LoadArrayByRoleId($this->objRole->RoleId) as $objRoleBuiltInAuth) {
$objRoleBuiltInAuth->Delete();
}
foreach (RoleEntityQtypeCustomFieldAuthorization::LoadArrayByRoleId($this->objRole->RoleId) as $objRoleCustomAuth) {
$objRoleCustomAuth->Delete();
}
$this->objRole->Delete();
$this->RedirectToListPage();
}
}
示例2: DeleteAllUserAccounts
/**
* Deletes all associated UserAccounts
* @return void
*/
public function DeleteAllUserAccounts()
{
if (is_null($this->intRoleId)) {
throw new QUndefinedPrimaryKeyException('Unable to call UnassociateUserAccount on this unsaved Role.');
}
// Get the Database Object for this Class
$objDatabase = Role::GetDatabase();
// Journaling
if ($objDatabase->JournalingDatabase) {
foreach (UserAccount::LoadArrayByRoleId($this->intRoleId) as $objUserAccount) {
$objUserAccount->Journal('DELETE');
}
}
// Perform the SQL Query
$objDatabase->NonQuery('
DELETE FROM
`user_account`
WHERE
`role_id` = ' . $objDatabase->SqlVariable($this->intRoleId) . '
');
}
示例3: GetUserAccountArray
/**
* Gets all associated UserAccounts as an array of UserAccount objects
* @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query
* @return UserAccount[]
*/
public function GetUserAccountArray($objOptionalClauses = null)
{
if (is_null($this->intRoleId)) {
return array();
}
try {
return UserAccount::LoadArrayByRoleId($this->intRoleId, $objOptionalClauses);
} catch (QCallerException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
}