Back to CategoryNode class

Method setAllLoaded

public void
setAllLoaded
()
Set to load all children
Returns
  • void
Since
  • 1.6
Class: CategoryNode
Project: Joomla

Method setAllLoaded - Source code

/**
 * Set to load all children
 *
 * @return  void
 *
 * @since   1.6
 */
public function setAllLoaded()
{
    $this->_allChildrenloaded = true;
    foreach ($this->_children as $child) {
        $child->setAllLoaded();
    }
}