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


PHP Tracker_Artifact::userCanView方法代碼示例

本文整理匯總了PHP中Tracker_Artifact::userCanView方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tracker_Artifact::userCanView方法的具體用法?PHP Tracker_Artifact::userCanView怎麽用?PHP Tracker_Artifact::userCanView使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Tracker_Artifact的用法示例。


在下文中一共展示了Tracker_Artifact::userCanView方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: doesUserCanViewArtifact

 private function doesUserCanViewArtifact(PFUser $user, Codendi_Request $request)
 {
     if (!$this->artifact->userCanView($user)) {
         $this->sendResponse($request, 'error', $GLOBALS['Language']->getText('plugin_tracker_artifact', 'request_not_valid'), null);
         return false;
     }
     return true;
 }
開發者ID:pombredanne,項目名稱:tuleap,代碼行數:8,代碼來源:ArtifactNotificationSubscriber.class.php

示例2: checkUserCanViewArtifact

 private function checkUserCanViewArtifact(Tracker_Artifact $artifact, PFUser $user)
 {
     if (!$artifact->userCanView($user)) {
         throw new SoapFault(get_artifact_fault, 'Permission Denied: you cannot access this artifact');
     }
     $tracker = $artifact->getTracker();
     if (!$tracker) {
         throw new SoapFault(get_tracker_factory_fault, 'Could Not Get Tracker', 'getArtifact');
     }
     $this->getProjectById($tracker->getProject()->getGroupId(), 'getArtifact');
     $this->checkUserCanViewTracker($tracker, $user);
 }
開發者ID:pombredanne,項目名稱:tuleap,代碼行數:12,代碼來源:SOAPServer.class.php

示例3: sendReminderNotification

 /**
  * Send reminder
  *
  * @param Tracker_DateReminder $reminder Reminder that will send notifications
  * @param Tracker_Artifact     $artifact Artifact for which reminders will be sent
  *
  * @return Void
  */
 protected function sendReminderNotification(Tracker_DateReminder $reminder, Tracker_Artifact $artifact)
 {
     $tracker = $this->getTracker();
     // 1. Get the recipients list
     $recipients = $reminder->getRecipients();
     // 2. Compute the body of the message + headers
     $messages = array();
     foreach ($recipients as $recipient) {
         if ($recipient && $artifact->userCanView($recipient) && $reminder->getField()->userCanRead($recipient)) {
             $this->buildMessage($reminder, $artifact, $messages, $recipient);
         }
     }
     // 3. Send the notification
     foreach ($messages as $m) {
         $historyDao = new ProjectHistoryDao(CodendiDataAccess::instance());
         $historyDao->groupAddHistory("tracker_date_reminder_sent", $this->tracker->getName() . ":" . $reminder->getField()->getId(), $this->tracker->getGroupId(), $m['recipients']);
         $this->sendReminder($artifact, $m['recipients'], $m['headers'], $m['subject'], $m['htmlBody'], $m['txtBody']);
     }
 }
開發者ID:nterray,項目名稱:tuleap,代碼行數:27,代碼來源:Tracker_DateReminderManager.class.php


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