本文整理匯總了PHP中Tracker_ArtifactFactory::getArtifactByIdUserCanView方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tracker_ArtifactFactory::getArtifactByIdUserCanView方法的具體用法?PHP Tracker_ArtifactFactory::getArtifactByIdUserCanView怎麽用?PHP Tracker_ArtifactFactory::getArtifactByIdUserCanView使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Tracker_ArtifactFactory
的用法示例。
在下文中一共展示了Tracker_ArtifactFactory::getArtifactByIdUserCanView方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: process
public function process(Tracker_IDisplayTrackerLayout $layout, Codendi_Request $request, PFUser $current_user)
{
if (!$this->tracker->userCanSubmitArtifact($current_user)) {
$this->logsErrorAndRedirectToTracker('plugin_tracker_admin', 'access_denied');
return;
}
$from_artifact = $this->artifact_factory->getArtifactByIdUserCanView($current_user, $request->get('from_artifact_id'));
if (!$from_artifact || $from_artifact->getTracker() !== $this->tracker) {
$this->logsErrorAndRedirectToTracker('plugin_tracker_include_type', 'error_missing_param');
return;
}
$from_changeset = $from_artifact->getChangeset($request->get('from_changeset_id'));
if (!$from_changeset) {
$this->logsErrorAndRedirectToTracker('plugin_tracker_include_type', 'error_missing_param');
return;
}
$submitted_values = $request->get('artifact');
if (!is_array($submitted_values)) {
$this->logsErrorAndRedirectToTracker('plugin_tracker_include_type', 'error_missing_param');
return;
}
try {
$this->processCopy($from_changeset, $current_user, $submitted_values);
} catch (Tracker_XML_Exporter_TooManyChildrenException $exception) {
$GLOBALS['Response']->addFeedback('error', $GLOBALS['Language']->getText('plugin_tracker_artifact', 'copy_too_many_children', array(Tracker_XML_ChildrenCollector::MAX)));
$this->redirectToArtifact($from_artifact);
}
}
示例2: getArtifactByFileInfoIdAndUser
/**
*
* @param type $id
*
* @return Tracker_Artifact
* @throws Tracker_FileInfo_InvalidFileInfoException
* @throws Tracker_FileInfo_UnauthorisedException
*/
public function getArtifactByFileInfoIdAndUser(PFUser $user, $id)
{
$row = $this->dao->searchArtifactIdByFileInfoIdInLastChangeset($id)->getRow();
if (!$row) {
throw new Tracker_FileInfo_InvalidFileInfoException('File does not exist');
}
$artifact = $this->artifact_factory->getArtifactByIdUserCanView($user, $row['artifact_id']);
if ($artifact == null) {
throw new Tracker_FileInfo_UnauthorisedException('User can\'t access the artifact the file is attached to');
}
return $artifact;
}
示例3: getArtifactLinkTitle
private function getArtifactLinkTitle($id)
{
if ($artifact = $this->artifact_factory->getArtifactByIdUserCanView($this->user, $id)) {
return $artifact->getTitle();
}
return '';
}
示例4: initInconsistentItems
private function initInconsistentItems(PFUser $user, Planning_Milestone $milestone, $redirect_to_self, array $planned)
{
foreach ($planned as $planned_artifact_id) {
if (!$this->all_collection[$milestone->getArtifactId()]->containsId($planned_artifact_id)) {
$artifact = $this->artifact_factory->getArtifactByIdUserCanView($user, $planned_artifact_id);
if ($artifact) {
$this->inconsistent_collection[$milestone->getArtifactId()]->push($this->backlog_item_builder->getItem($artifact, $redirect_to_self));
}
}
}
}