本文整理汇总了PHP中OA_Permission::mergeAdminAccounts方法的典型用法代码示例。如果您正苦于以下问题:PHP OA_Permission::mergeAdminAccounts方法的具体用法?PHP OA_Permission::mergeAdminAccounts怎么用?PHP OA_Permission::mergeAdminAccounts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OA_Permission
的用法示例。
在下文中一共展示了OA_Permission::mergeAdminAccounts方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getLinkedAccounts
/**
* A method which returns all the accounts linked to the user
*
* Returns array of:
* accountId => 'account name'
*
* If $groupByType is equal true returns:
* accountType => accountId => 'account name'
*
* where accountType is one of: OA_ACCOUNT_ADMIN, OA_ACCOUNT_MANAGER, etc.
*
* @param boolean $groupByType
* @param boolean $sort An optional parameter, when true, sorts
* the returned values alphabetically by account
* name. Ignored when $groupByType is false.
* @return array
*/
function getLinkedAccounts($groupByType = false, $sort = false)
{
$doAccount_user_Assoc = OA_Dal::factoryDO('account_user_assoc');
$doAccount_user_Assoc->user_id = OA_Permission::getUserId();
$doAccounts = OA_Dal::factoryDO('accounts');
$doAccounts->orderBy('account_name');
$doAccount_user_Assoc->joinAdd($doAccounts);
$doAccount_user_Assoc->find();
$aAccountsByType = array();
while ($doAccount_user_Assoc->fetch()) {
$aAccountsByType[$doAccount_user_Assoc->account_type][$doAccount_user_Assoc->account_id] = $doAccount_user_Assoc->account_name;
}
uksort($aAccountsByType, array('OA_Permission', '_accountTypeSort'));
if (isset($aAccountsByType[OA_ACCOUNT_ADMIN])) {
$aAccountsByType = OA_Permission::mergeAdminAccounts($aAccountsByType);
}
if (!$groupByType) {
$aAccounts = array();
foreach ($aAccountsByType as $accountType => $aAccount) {
foreach ($aAccount as $id => $name) {
$aAccounts[$id] = $name;
}
}
return $aAccounts;
}
if ($sort) {
foreach ($aAccountsByType as $accountType => $aAccount) {
natcasesort($aAccountsByType[$accountType]);
}
}
return $aAccountsByType;
}