本文整理汇总了PHP中Branch::setLevel方法的典型用法代码示例。如果您正苦于以下问题:PHP Branch::setLevel方法的具体用法?PHP Branch::setLevel怎么用?PHP Branch::setLevel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Branch
的用法示例。
在下文中一共展示了Branch::setLevel方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addBranch
/**
* Sets the current active branch in the manager
*
* @param Branch $branch
*/
public function addBranch(Branch $branch)
{
if ($this->_currentBranch) {
$branch->setParentBranch($this->_currentBranch);
$this->_currentBranch = $branch;
} else {
$this->_currentBranch = $branch;
}
$branch->setUniqueId($this->_uniqueId);
$branch->setLevel($this->_level);
$this->_level++;
$this->_uniqueId++;
}
示例2: addBranch
/**
* Sets the current active branch in the manager
*
* @param Branch $branch
*/
public function addBranch(Branch $branch)
{
if ($this->currentBranch) {
$branch->setParentBranch($this->currentBranch);
$this->currentBranch = $branch;
} else {
$this->currentBranch = $branch;
}
$branch->setUniqueId($this->uniqueId);
$branch->setLevel($this->level);
$this->level++;
$this->uniqueId++;
if ($branch->getType() == Branch::TYPE_ROOT) {
$this->setRootBranch($branch);
}
}