本文整理汇总了PHP中Tracker_Artifact::setTitle方法的典型用法代码示例。如果您正苦于以下问题:PHP Tracker_Artifact::setTitle方法的具体用法?PHP Tracker_Artifact::setTitle怎么用?PHP Tracker_Artifact::setTitle使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tracker_Artifact
的用法示例。
在下文中一共展示了Tracker_Artifact::setTitle方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: build
public function build()
{
$artifact = new Tracker_Artifact($this->id, $this->tracker_id, $this->submitted_by, $this->submitted_on, null);
if ($this->tracker) {
$artifact->setTracker($this->tracker);
}
if ($this->formElementFactory) {
$artifact->setFormElementFactory($this->formElementFactory);
}
if ($this->changesets) {
$artifact->setChangesets($this->changesets);
}
if ($this->hierarchy_factory) {
$artifact->setHierarchyFactory($this->hierarchy_factory);
}
if (isset($this->ancestors)) {
$artifact->setAllAncestors($this->ancestors);
}
if ($this->title) {
$artifact->setTitle($this->title);
}
if ($this->parent_without_permission_checking) {
$artifact->setParentWithoutPermissionChecking($this->parent_without_permission_checking);
}
if ($this->submitted_by_user) {
$artifact->setSubmittedByUser($this->submitted_by_user);
}
foreach ($this->user_can_view as $user) {
$artifact->setUserCanView($user, true);
}
return $artifact;
}
示例2: getInstanceFromRow
/**
* Buil an instance of artifact
*
* @param array $row the value of the artifact form the db
*
* @return Tracker_Artifact
*/
public function getInstanceFromRow($row)
{
$artifact = new Tracker_Artifact($row['id'], $row['tracker_id'], $row['submitted_by'], $row['submitted_on'], $row['use_artifact_permissions']);
if (isset($row['title'])) {
$artifact->setTitle($row['title']);
}
return $artifact;
}
示例3: pushItem
private function pushItem(Planning_Milestone $milestone, Tracker_Artifact $artifact, array $parents, array $semantics, $redirect_to_self)
{
$artifact_id = $artifact->getId();
if (!isset($semantics[$artifact_id])) {
return;
}
$artifact->setTitle($semantics[$artifact_id][Tracker_Semantic_Title::NAME]);
$backlog_item = $this->backlog_item_builder->getItem($artifact, $redirect_to_self);
if (isset($parents[$artifact_id])) {
$backlog_item->setParent($parents[$artifact_id]);
}
$this->pushItemInOpenCollections($milestone, $artifact, $semantics, $backlog_item);
$this->pushItemInDoneCollection($milestone, $semantics, $artifact_id, $backlog_item);
$this->all_collection[$milestone->getArtifactId()]->push($backlog_item);
}