items = $this->get('Items'); if (\Pagebuilderck\CKFof::isAdmin()) $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { PagebuilderckHelper::loadCkbox(); // Load the left sidebar only for Joomla 3 and under. if (! PAGEBUILDERCK_ISJ4) { PagebuilderckHelper::addSubmenu('articles'); } JToolBarHelper::title(JText::_('COM_PAGEBUILDERCK')); // Get the toolbar object instance $bar = JToolBar::getInstance('toolbar'); // Create the New button $newButton = ' ' . JText::_('CK_NEW') . ' '; $bar->appendButton('Custom', $newButton, 'new'); } }