BaseEventTypeController::renderOptionalElements PHP Method

renderOptionalElements() public method

Render the optional elements for the controller state.
public renderOptionalElements ( string $action, boolean $form = null, boolean $data = null )
$action string
$form boolean
$data boolean
    public function renderOptionalElements($action, $form = null, $data = null)
    {
        foreach ($this->getOptionalElements() as $element) {
            $this->renderOptionalElement($element, $action, $form, $data);
        }
    }
BaseEventTypeController