本文整理汇总了PHP中Tracker_Artifact::setAllAncestors方法的典型用法代码示例。如果您正苦于以下问题:PHP Tracker_Artifact::setAllAncestors方法的具体用法?PHP Tracker_Artifact::setAllAncestors怎么用?PHP Tracker_Artifact::setAllAncestors使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tracker_Artifact
的用法示例。
在下文中一共展示了Tracker_Artifact::setAllAncestors方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: build
public function build()
{
$artifact = new Tracker_Artifact($this->id, $this->tracker_id, null, null, 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);
}
return $artifact;
}
示例2: 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;
}