BaseEventTypeController::displayErrors PHP Method

displayErrors() public method

Render the given errors with the standard template.
public displayErrors ( $errors, boolean $bottom = false )
$errors
$bottom boolean
    public function displayErrors($errors, $bottom = false)
    {
        $this->renderPartial('//elements/form_errors', array('errors' => $errors, 'bottom' => $bottom, 'elements' => $this->open_elements));
    }
BaseEventTypeController