当前位置: 首页>>代码示例>>PHP>>正文


PHP Tracker_Artifact::getValue方法代码示例

本文整理汇总了PHP中Tracker_Artifact::getValue方法的典型用法代码示例。如果您正苦于以下问题:PHP Tracker_Artifact::getValue方法的具体用法?PHP Tracker_Artifact::getValue怎么用?PHP Tracker_Artifact::getValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Tracker_Artifact的用法示例。


在下文中一共展示了Tracker_Artifact::getValue方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getCurrentComputedValue

 /**
  * @param User             $user
  * @param Tracker_Artifact $artifact
  * 
  * @return mixed
  */
 private function getCurrentComputedValue(Tracker_Artifact $artifact)
 {
     $value = $artifact->getValue($this);
     if ($value) {
         return $value->getValue();
     }
     return null;
 }
开发者ID:nickl-,项目名称:tuleap,代码行数:14,代码来源:Tracker_FormElement_Field_Numeric.class.php

示例2: isSetForArtifact

 /**
  * Return true if given artifact has the same value than current object
  *
  * @param Tracker_Artifact $artifact
  * @return boolean
  */
 public function isSetForArtifact(Tracker_Artifact $artifact)
 {
     $artifact_value = $artifact->getValue($this->getField());
     if ($artifact_value && $artifact_value->getValue() == array($this->getValue()->getId())) {
         return true;
     }
     return false;
 }
开发者ID:pombredanne,项目名称:tuleap,代码行数:14,代码来源:FieldValue.class.php

示例3: getAssigneeIds

 private function getAssigneeIds(Tracker_Artifact $artifact)
 {
     $contributor_field = $artifact->getTracker()->getContributorField();
     if ($contributor_field) {
         $assignee = $artifact->getValue($contributor_field);
         if ($assignee) {
             return $assignee->getValue();
         }
     }
     return array();
 }
开发者ID:pombredanne,项目名称:tuleap,代码行数:11,代码来源:PermissionRetrieveAssignee.class.php

示例4: testGetValue

 function testGetValue()
 {
     $changeset = new MockTracker_Artifact_Changeset();
     $field = new MockTracker_FormElement_Field_Date();
     $value = new MockTracker_Artifact_ChangesetValue_Date();
     $changeset->setReturnReference('getValue', $value);
     $id = $tracker_id = $use_artifact_permissions = $submitted_by = $submitted_on = '';
     $artifact = new Tracker_Artifact($id, $tracker_id, $submitted_by, $submitted_on, $use_artifact_permissions);
     $this->assertEqual($artifact->getValue($field, $changeset), $value);
 }
开发者ID:rinodung,项目名称:tuleap,代码行数:10,代码来源:Tracker_ArtifactTest.php

示例5: getLastChangesetValue

 /**
  * Get the last ChangesetValue of the field
  *
  * @param Tracker_Artifact
  *
  * @return Tracker_Artifact_ChangesetValue
  */
 public function getLastChangesetValue(Tracker_Artifact $artifact)
 {
     return $artifact->getValue($this);
 }
开发者ID:pdaniel-frk,项目名称:tuleap,代码行数:11,代码来源:Tracker_FormElement_Field.class.php

示例6: getCurrentValue

 private function getCurrentValue(Tracker_Artifact $artifact)
 {
     $changeset_value = $artifact->getValue($this);
     if ($changeset_value) {
         $values = $this->getBind()->getNumericValues($changeset_value);
         if (!empty($values)) {
             return $values[0];
         }
     }
     return null;
 }
开发者ID:amanikamail,项目名称:tuleap,代码行数:11,代码来源:Tracker_FormElement_Field_Selectbox.class.php

示例7: getCapacity

 /**
  * @param Tracker_Artifact $artifact
  *
  * @return null|int
  */
 public function getCapacity(Tracker_Artifact $artifact)
 {
     $field = $this->getCapacityField();
     if (!$field) {
         return null;
     }
     $changeset_value = $artifact->getValue($field);
     if (!$changeset_value) {
         return 0;
     }
     return $changeset_value->getValue();
 }
开发者ID:rinodung,项目名称:tuleap,代码行数:17,代码来源:Tracker_FormElement_Field_Burndown.class.php


注:本文中的Tracker_Artifact::getValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。