Clickalicious\PhpMemAdmin\App::getHtmlInfoMessage PHP Метод

getHtmlInfoMessage() защищенный Метод

Returns the HTML for the info message if info is set, otherwise empty string.
Автор: Benjamin Carl ([email protected])
protected getHtmlInfoMessage ( ) : string
Результат string The HTML as string
    protected function getHtmlInfoMessage()
    {
        $html = '';
        if (false !== ($info = $this->getInfo())) {
            $html = $this->renderTemplate($this->loadTemplates('messages\\info'), array('info' => $info));
        }
        return $html;
    }