本文整理汇总了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;
}
示例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);
}
示例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']);
}
}