2010-10-27 69 views
0

這是每Acquia's documentation簽名:Drupal的通知API:notifications_user_get_subscriptions

notifications_user_get_subscriptions($uid, $event_type, 
     $oid, $object = NULL, $refresh = FALSE) 

我有used this method before得到節點級訂閱的用戶。如果我只想獲取特定內容類型的訂閱,我無法弄清楚爲參數4傳遞什麼內容。此呼叫返回所有內容類型訂閱:

notifications_user_get_subscriptions($author->uid, 'node', 'type'); 

參數4應該是什麼? 「類型」只是數據庫中的「論壇」,但傳遞字符串「論壇」不起作用。

回答

0

直到有這個問題的答案,我訴諸迭代通過結果和測試'類型'字段。我發佈瞭解決方案here