FOF30\Toolbar\Toolbar::onRead PHP Method

onRead() public method

Renders the toolbar for the component's Read pages
public onRead ( ) : void
return void
    public function onRead()
    {
        // On frontend, buttons must be added specifically
        if ($this->container->platform->isBackend() || $this->renderFrontendSubmenu) {
            $this->renderSubmenu();
        }
        if (!$this->container->platform->isBackend() && !$this->renderFrontendButtons) {
            return;
        }
        $option = $this->container->componentName;
        $componentName = str_replace('com_', '', $option);
        $view = $this->container->input->getCmd('view', 'cpanel');
        // Set toolbar title
        $subtitle_key = strtoupper($option . '_TITLE_' . $view . '_READ');
        JToolBarHelper::title(JText::_(strtoupper($option)) . ': ' . JText::_($subtitle_key), $componentName);
        if (!$this->isDataView()) {
            return;
        }
        // Set toolbar icons
        JToolBarHelper::back();
    }