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

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

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