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