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


PHP Tracker_ArtifactFactory::getArtifactByIdUserCanView方法代碼示例

本文整理匯總了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);
     }
 }
開發者ID:amanikamail,項目名稱:tuleap,代碼行數:28,代碼來源:CopyArtifact.class.php

示例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;
 }
開發者ID:pombredanne,項目名稱:tuleap,代碼行數:20,代碼來源:FileInfoFactory.class.php

示例3: getArtifactLinkTitle

 private function getArtifactLinkTitle($id)
 {
     if ($artifact = $this->artifact_factory->getArtifactByIdUserCanView($this->user, $id)) {
         return $artifact->getTitle();
     }
     return '';
 }
開發者ID:nterray,項目名稱:tuleap,代碼行數:7,代碼來源:SearchContentView.class.php

示例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));
             }
         }
     }
 }
開發者ID:ansarbek,項目名稱:tuleap,代碼行數:11,代碼來源:BacklogItemCollectionFactory.class.php


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