本文整理匯總了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']);
}
}