Back to PhocacartUtilsException class

Method renderErrorInfo

public static
renderErrorInfo
(mixed $msg, mixed $jText = false)

Method renderErrorInfo - Source code

public static function renderErrorInfo($msg, $jText = false)
{
    if ($jText) {
        return '<div class="alert alert-error">' . Text::_($msg) . '</div>';
    } else {
        return '<div class="alert alert-error">' . $msg . '</div>';
    }
}