当前位置: 首页>>代码示例>>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;未经允许,请勿转载。