本文整理汇总了PHP中UserList::filterByAttribute方法的典型用法代码示例。如果您正苦于以下问题:PHP UserList::filterByAttribute方法的具体用法?PHP UserList::filterByAttribute怎么用?PHP UserList::filterByAttribute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserList
的用法示例。
在下文中一共展示了UserList::filterByAttribute方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: do_login
protected function do_login()
{
$ul = new UserList();
$ul->filterByAttribute("{$this->network}_id", $this->user->identifier);
$list = $ul->get(1);
$user = $list[0];
$response = false;
if ($user != null) {
$response = User::loginByUserID($user->getUserID());
}
return $response;
}
示例2: function
*/
$getMembers = function ($filters) use($av) {
// Filter to show only the staff members, or customize
// by 'custom template' and choose a block name
$ul = new UserList();
$defaultAttribute = ['', true, '='];
foreach ($filters as $k => $filter) {
if ($k === 'groups') {
foreach ($filter as $group) {
$ul->filterByGroup($group);
}
} elseif ($k === 'attributes') {
// $attribute keys: 'id', 'value', 'compare'
foreach ($filter as $attribute) {
list($handle, $value, $comparison) = array_replace($defaultAttribute, $attribute);
$ul->filterByAttribute($handle, $value, $comparison);
}
}
$ul->sortBy('ak_order', 'asc');
}
/**
* Build doc with all the 'member's in it, and load the values we'll
* need to display.
*/
return array_map(function ($member) use($av) {
return ['id' => $member->getUserID(), 'img' => $av->getImagePath($member), 'name' => trim($member->getAttribute('first_name') . ' ' . $member->getAttribute('last_name')), 'title' => $member->getAttribute('job_title') ?: "Jane's Walk", 'email' => $member->getUserEmail(), 'description' => $member->getAttribute('bio')];
}, $ul->get(100));
};
echo $controller->getContent();
?>
<ul class="ccm-staff-list">