本文整理汇总了PHP中HtmlObject\Element::setParent方法的典型用法代码示例。如果您正苦于以下问题:PHP Element::setParent方法的具体用法?PHP Element::setParent怎么用?PHP Element::setParent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HtmlObject\Element
的用法示例。
在下文中一共展示了Element::setParent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: insertChildAtPosition
/**
* Prepend or append to self/child.
*
* @param Element $child
* @param string $name
* @param null $subject
* @param null $position
* @param boolean $before
*
* @return $this
*/
protected function insertChildAtPosition($child, $name = null, $subject = null, $position = null, $before = false)
{
// Get default child name
$subject = $subject ?: $this;
$name = $name ?: count($this->children);
// Bind parent to child
if ($child instanceof TreeObject) {
$child->setParent($subject);
}
// Add object to children
$child->parentIndex = $name;
// If the position is a child name, get its index
$before = $before ? 0 : 1;
$position = is_null($position) ? count($subject->children) : $position;
if (is_string($position)) {
$position = array_search($position, array_keys($subject->children));
}
if (is_string($name) && isset($subject->children[$name])) {
$subject->children[$name] = $child;
return $this;
}
// Slice and recompose children
$subject->children = array_slice($subject->children, 0, $position + $before, true) + array($name => $child) + array_slice($subject->children, $position, count($subject->children), true);
return $this;
}