Back to AbstractGroupButton class

Method getChildToolbar

public \Joomla\CMS\Toolbar\Toolbar
getChildToolbar
()
Get child toolbar.
Returns
  • \Joomla\CMS\Toolbar\Toolbar Return new child Toolbar instance.
Since
  • 4.0.0

Method getChildToolbar - Source code

/**
 * Get child toolbar.
 *
 * @return  Toolbar  Return new child Toolbar instance.
 *
 * @since   4.0.0
 */
public function getChildToolbar() : Toolbar
{
    if (!$this->child) {
        $this->child = $this->parent->createChild($this->getName() . '-children');
    }
    return $this->child;
}