當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Subscription::getByIDs方法代碼示例

本文整理匯總了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);
 }
開發者ID:sfsergey,項目名稱:knowledgetree,代碼行數:17,代碼來源:KTSubscriptions.php

示例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'];
 }
開發者ID:sfsergey,項目名稱:knowledgetree,代碼行數:25,代碼來源:KTAPIDocument.inc.php


注:本文中的Subscription::getByIDs方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。