本文整理汇总了PHP中CPullStack::addByUser方法的典型用法代码示例。如果您正苦于以下问题:PHP CPullStack::addByUser方法的具体用法?PHP CPullStack::addByUser怎么用?PHP CPullStack::addByUser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CPullStack
的用法示例。
在下文中一共展示了CPullStack::addByUser方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: sendEvent
/**
* Send event by module pull.
*
* @param int|array $userIds List of user ids.
* @param string $command Command determine action on client.
* @param array $data Optional data which can be used on client.
* @throws \Bitrix\Main\LoaderException
* @return void
*/
public function sendEvent($userIds, $command, array $data = array())
{
if (empty($userIds)) {
return;
}
if (!Loader::includeModule('pull')) {
return;
}
$message = array('module_id' => self::INTERNAL_MODULE_ID, 'command' => $command, 'params' => $data);
if (!is_array($userIds)) {
$userIds = array($userIds);
}
foreach (array_unique($userIds) as $userId) {
\CPullStack::addByUser($userId, $message);
}
unset($userId);
}