本文整理汇总了PHP中Subscription::unsubscribeUserFromRecord方法的典型用法代码示例。如果您正苦于以下问题:PHP Subscription::unsubscribeUserFromRecord方法的具体用法?PHP Subscription::unsubscribeUserFromRecord怎么用?PHP Subscription::unsubscribeUserFromRecord使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Subscription
的用法示例。
在下文中一共展示了Subscription::unsubscribeUserFromRecord方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: unsubscribeFromRecord
public function unsubscribeFromRecord(ServiceBase $api, array $args)
{
$this->requireArgs($args, array('module', 'record'));
$bean = BeanFactory::retrieveBean($args['module'], $args['record']);
if (empty($bean)) {
throw new SugarApiExceptionNotFound('Could not find parent record ' . $args['record'] . ' in module ' . $args['module']);
}
if (!$bean->ACLAccess('view')) {
$moduleName = null;
if (isset($args['module'])) {
$failed_module_strings = return_module_language($GLOBALS['current_language'], $args['module']);
$moduleName = $failed_module_strings['LBL_MODULE_NAME'];
}
$args = null;
if (!empty($moduleName)) {
$args = array('moduleName' => $moduleName);
}
throw new SugarApiExceptionNotAuthorized('EXCEPTION_SUBSCRIBE_MODULE_NOT_AUTHORIZED', $args);
}
return Subscription::unsubscribeUserFromRecord($api->user, $bean);
}
示例2: handleUserToBeanRelationship
/**
* Associates the user to the activity, if it is a delete activity or the user can access the record. Otherwise, the
* the user's subscription to the record is removed.
*
* We allow the user to see the activity on home and list views if the user has access to the bean.
*
* @param SugarBean $bean
* @param User $user
* @param bool $isADeleteActivity
*/
protected function handleUserToBeanRelationship(SugarBean $bean, User $user, $isADeleteActivity = false)
{
if ($isADeleteActivity || $bean->checkUserAccess($user)) {
$fields = $this->getChangedFieldsForUser($user, $bean);
$this->activities_users->add($user, array('fields' => json_encode($fields)));
} else {
Subscription::unsubscribeUserFromRecord($user, $bean);
}
}