Migration::displayWarning PHP Method

displayWarning() public method

Display a Warning
public displayWarning ( $msg, $red = false )
$msg string
$red boolean (false by default)
    function displayWarning($msg, $red = false)
    {
        echo ($red ? "<div class='red'><p>" : "<p><span class='b'>") . Html::entities_deep($msg) . ($red ? "</p></div>" : "</span></p>");
        $this->log($msg, true);
    }