本文整理匯總了PHP中Subscription::getByIDs方法的典型用法代碼示例。如果您正苦於以下問題:PHP Subscription::getByIDs方法的具體用法?PHP Subscription::getByIDs怎麽用?PHP Subscription::getByIDs使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Subscription
的用法示例。
在下文中一共展示了Subscription::getByIDs方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: do_main
function do_main()
{
$iSubscriptionType = SubscriptionEvent::subTypes('Folder');
if (!Subscription::exists($this->oUser->getId(), $this->oFolder->getId(), $iSubscriptionType)) {
$_SESSION['KTErrorMessage'][] = _kt("You were not subscribed to that folder");
} else {
$oSubscription =& Subscription::getByIDs($this->oUser->getId(), $this->oFolder->getId(), $iSubscriptionType);
$res = $oSubscription->delete();
if ($res) {
$_SESSION['KTInfoMessage'][] = _kt("You have been unsubscribed from this folder");
} else {
$_SESSION['KTErrorMessage'][] = _kt("There was a problem unsubscribing you from this folder");
}
}
controllerRedirect('browse', 'fFolderId=' . $this->oFolder->getId());
exit(0);
}
示例2: unsubscribe
/**
* Removes the users subscription to the document
*
* @author KnowledgeTree Team
* @access public
* @return boolean|object $result SUCCESS Boolean result of operation | FAILURE - a pear error object
*/
public function unsubscribe()
{
if (!$this->isSubscribed()) {
return TRUE;
}
$subscriptionType = SubscriptionEvent::subTypes('Document');
$user = $this->ktapi->get_user();
$document = $this->document;
$subscription =& Subscription::getByIDs($user->getId(), $document->getId(), $subscriptionType);
$result = $subscription->delete();
if (PEAR::isError($result)) {
return $result->getMessage();
}
if ($result) {
return $result;
}
return $_SESSION['errorMessage'];
}