Clickalicious\PhpMemAdmin\App::getMessages PHP Method

getMessages() protected method

Retrieves the messages to be shown in rendered page.
Author: Benjamin Carl ([email protected])
protected getMessages ( ) : string
return string The message HTML string
    protected function getMessages()
    {
        $message = $this->renderTemplate($this->loadTemplates('message'), array('message' => $this->getErrorMessageHtml() . $this->getHtmlInfoMessage() . $this->getHtmlSuccessMessage()));
        return $message;
    }