FOF30\Render\Joomla3::postRender PHP Метод

postRender() публичный Метод

Echoes any HTML to show after the view template
public postRender ( string $view, string $task ) : void
$view string The current view
$task string The current task
Результат void
    public function postRender($view, $task)
    {
        $input = $this->container->input;
        $platform = $this->container->platform;
        $format = $input->getCmd('format', 'html');
        if (empty($format)) {
            $format = 'html';
        }
        if ($format != 'html') {
            return;
        }
        // Closing tag only if we're not in CLI
        if ($platform->isCli()) {
            return;
        }
        echo "</div>\n";
        // Closes akeeba-renderjoomla div
    }