PHP code example of venca-x / nette-form-renderer
1. Go to this page and download the library: Download venca-x/nette-form-renderer library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
venca-x / nette-form-renderer example snippets
$form = new Form;
$form->setRenderer(new VencaX\NetteFormRenderer\BootstrapRendererV5());
$form->addEmail('exampleInputEmail1', 'Email address:')
->setHtmlAttribute('placeholder', 'Enter email')
->setOption('description', 'We\'ll never share your email with anyone else.');
$form->addPassword('exampleInputPassword1', 'Password')
->setHtmlAttribute('placeholder', 'Password');
$form->addCheckbox('checkbox', 'Check me out');
$form->addCheckbox('checkbox2', 'Check me out2');
$form->addRadioList('country', 'Country', [
'cz' => 'Česká republika',
'sk' => 'Slovensko',
'eu' => 'EU',
]);
$form->addEmail('exampleInputEmail2', 'Email address')
->setHtmlAttribute('placeholder', '[email protected] ');
$form->addSelect('exampleSelect', 'Example select', [
'1',
'2',
'3',
'4',
'5', ]);
$form->addMultiSelect('exampleMultipleSelect', 'Example multiple select', [
'1',
'2',
'3',
'4',
'5', ]);
$form->addTextArea('textarea', 'Example textarea');
$form->addUpload('upload', 'Example upload');
$form->addMultiUpload('multiUpload', 'Example multiUpload');
//sizes
$form->addEmail('formControlLg', '.form-control-lg')
->setHtmlAttribute('class', 'form-control-lg')
->setHtmlAttribute('placeholder', '.form-control-lg');
$form->addEmail('formControl', '.form-control')
->setHtmlAttribute('placeholder', 'Default input');
$form->addEmail('formControlSm', '.form-control-sm')
->setHtmlAttribute('class', 'form-control-sm')
->setHtmlAttribute('placeholder', '.form-control-sm');
//sizes select
$form->addSelect('largeSelect', 'Large select', ['Large select'])
->setHtmlAttribute('class', 'form-control-lg');
$form->addSelect('defaultSelect', ' Default select', ['Default select']);
$form->addSelect('smallSelect', 'Small select', ['Small select'])
->setHtmlAttribute('class', 'form-control-sm');
//disables
$form->addText('disabled', 'Disabled:')
->setHtmlAttribute('placeholder', 'Disabled input here…')
->setDisabled(true);
$form->addSubmit('submit', 'Submit')->setHtmlAttribute('class', 'btn btn-primary');
return $form;
$form = new Form;
$form->setRenderer(new VencaX\NetteFormRenderer\BootstrapRendererV5());
$form->addCheckbox('mondayCheckbox', 'Monday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('tuesdayCheckbox', 'Tuesday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('wednesdayCheckbox', 'Wednesday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('thurstdayCheckbox', 'Thurstday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('fridayCheckbox', 'Friday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('saturdayCheckbox', 'Saturday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('sundayCheckbox', 'Sunday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addRadioList('weekRadionline', 'Week radio 2', [
'monday' => 'Monday',
'tuesday' => 'Tuesday',
'wednesday' => 'Wednesday',
'thurstday' => 'Thurstday',
'friday' => 'Friday',
'saturday' => 'Saturday',
'sunday' => 'Sunday',
])->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addSubmit('submit', 'Submit')->setHtmlAttribute('class', 'btn btn-primary');
return $form;
$form = new Form;
$form->setRenderer(new VencaX\NetteFormRenderer\BootstrapRendererV5());
//horizontal form
$renderer = $form->getRenderer();
$renderer->setFormHorizontalOrientation();
//$renderer->setFormControlLabelWidth('col-sm-6');
//$renderer->setFormControlContainerWidth('col-sm-6');
$form->addEmail('exampleInputEmail1', 'Email address:')
->setHtmlAttribute('placeholder', 'Enter email')
->setOption('description', 'We\'ll never share your email with anyone else.');
$form->addPassword('exampleInputPassword1', 'Password')
->setHtmlAttribute('placeholder', 'Password');
$form->addCheckbox('checkbox', 'Check me out');
$form->addCheckbox('checkbox2', 'Check me out2');
$form->addRadioList('country', 'Country', [
'cz' => 'Česká republika',
'sk' => 'Slovensko',
'eu' => 'EU',
]);
$form->addEmail('exampleInputEmail2', 'Email address')
->setHtmlAttribute('placeholder', '[email protected] ');
$form->addSelect('exampleSelect', 'Example select', [
'1',
'2',
'3',
'4',
'5', ]);
$form->addMultiSelect('exampleMultipleSelect', 'Example multiple select', [
'1',
'2',
'3',
'4',
'5', ]);
$form->addTextArea('textarea', 'Example textarea');
$form->addUpload('upload', 'Example upload');
$form->addMultiUpload('multiUpload', 'Example multiUpload');
//sizes
$form->addEmail('formControlLg', '.form-control-lg')
->setHtmlAttribute('class', 'form-control-lg')
->setHtmlAttribute('placeholder', '.form-control-lg');
$form->addEmail('formControl', '.form-control')
->setHtmlAttribute('placeholder', 'Default input');
$form->addEmail('formControlSm', '.form-control-sm')
->setHtmlAttribute('class', 'form-control-sm')
->setHtmlAttribute('placeholder', '.form-control-sm');
//sizes select
$form->addSelect('largeSelect', 'Large select', ['Large select'])
->setHtmlAttribute('class', 'form-control-lg');
$form->addSelect('defaultSelect', ' Default select', ['Default select']);
$form->addSelect('smallSelect', 'Small select', ['Small select'])
->setHtmlAttribute('class', 'form-control-sm');
//disables
$form->addText('disabled', 'Disabled:')
->setHtmlAttribute('placeholder', 'Disabled input here…')
->setDisabled(true);
$form->addSubmit('submit', 'Submit')->setHtmlAttribute('class', 'btn btn-primary');
return $form;
$form = new Form;
$form->setRenderer(new VencaX\NetteFormRenderer\BootstrapRendererV5());
//horizontal form
$renderer = $form->getRenderer();
$renderer->setFormHorizontalOrientation();
//$renderer->setFormControlLabelWidth('col-sm-6');
//$renderer->setFormControlContainerWidth('col-sm-6');
//!!!!!!!!! this orientation **don't work** !!!!!!!!!!!!!!!!!
$form->addCheckbox('mondayCheckbox', 'Monday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('tuesdayCheckbox', 'Tuesday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('wednesdayCheckbox', 'Wednesday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('thurstdayCheckbox', 'Thurstday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('fridayCheckbox', 'Friday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('saturdayCheckbox', 'Saturday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addCheckbox('sundayCheckbox', 'Sunday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addRadioList('weekRadionline', 'Week radio 2', [
'monday' => 'Monday',
'tuesday' => 'Tuesday',
'wednesday' => 'Wednesday',
'thurstday' => 'Thurstday',
'friday' => 'Friday',
'saturday' => 'Saturday',
'sunday' => 'Sunday',
])->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV5::FORM_CHECK_INLINE);
$form->addSubmit('submit', 'Submit')->setHtmlAttribute('class', 'btn btn-primary');
return $form;
$form = new Form;
$form->setRenderer(new VencaX\NetteFormRenderer\BootstrapRendererV5());
//inline form
$renderer = $form->getRenderer();
$renderer->setFormInline();
$form->addEmail('loginemail', 'E-mail address:')
->setHtmlAttribute('placeholder', 'Enter e-mail');
$form->addPassword('password', 'Password')
->setHtmlAttribute('placeholder', 'Password');
$form->addCheckbox('checkbox', 'Check me out');
$form->addSubmit('submit', 'Submit')->setHtmlAttribute('class', 'btn btn-primary');
return $form;
$form = new Form;
$form->setRenderer(new VencaX\NetteFormRenderer\BootstrapRendererV4());
$form->addEmail('exampleInputEmail1', 'Email address:')
->setHtmlAttribute('placeholder', 'Enter email')
->setOption('description', 'We\'ll never share your email with anyone else.');
$form->addPassword('exampleInputPassword1', 'Password')
->setHtmlAttribute('placeholder', 'Password');
$form->addCheckbox('checkbox', 'Check me out');
$form->addCheckbox('checkbox2', 'Check me out2');
$form->addRadioList('country', 'Country', [
'cz' => 'Česká republika',
'sk' => 'Slovensko',
'eu' => 'EU',
]);
$form->addEmail('exampleInputEmail2', 'Email address')
->setHtmlAttribute('placeholder', '[email protected] ');
$form->addSelect('exampleSelect', 'Example select', [
'1',
'2',
'3',
'4',
'5', ]);
$form->addMultiSelect('exampleMultipleSelect', 'Example multiple select', [
'1',
'2',
'3',
'4',
'5', ]);
$form->addTextArea('textarea', 'Example textarea');
$form->addUpload('upload', 'Example upload');
$form->addMultiUpload('multiUpload', 'Example multiUpload');
//sizes
$form->addEmail('formControlLg', '.form-control-lg')
->setHtmlAttribute('class', 'form-control-lg')
->setHtmlAttribute('placeholder', '.form-control-lg');
$form->addEmail('formControl', '.form-control')
->setHtmlAttribute('placeholder', 'Default input');
$form->addEmail('formControlSm', '.form-control-sm')
->setHtmlAttribute('class', 'form-control-sm')
->setHtmlAttribute('placeholder', '.form-control-sm');
//sizes select
$form->addSelect('largeSelect', 'Large select', ['Large select'])
->setHtmlAttribute('class', 'form-control-lg');
$form->addSelect('defaultSelect', ' Default select', ['Default select']);
$form->addSelect('smallSelect', 'Small select', ['Small select'])
->setHtmlAttribute('class', 'form-control-sm');
//disables
$form->addText('disabled', 'Disabled:')
->setHtmlAttribute('placeholder', 'Disabled input here…')
->setDisabled(true);
$form->addSubmit('submit', 'Submit')->setHtmlAttribute('class', 'btn btn-primary');
return $form;
$form = new Form;
$form->setRenderer(new VencaX\NetteFormRenderer\BootstrapRendererV4());
$form->addCheckbox('mondayCheckbox', 'Monday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('tuesdayCheckbox', 'Tuesday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('wednesdayCheckbox', 'Wednesday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('thurstdayCheckbox', 'Thurstday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('fridayCheckbox', 'Friday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('saturdayCheckbox', 'Saturday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('sundayCheckbox', 'Sunday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addRadioList('weekRadionline', 'Week radio 2', [
'monday' => 'Monday',
'tuesday' => 'Tuesday',
'wednesday' => 'Wednesday',
'thurstday' => 'Thurstday',
'friday' => 'Friday',
'saturday' => 'Saturday',
'sunday' => 'Sunday',
])->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addSubmit('submit', 'Submit')->setHtmlAttribute('class', 'btn btn-primary');
return $form;
$form = new Form;
$form->setRenderer(new VencaX\NetteFormRenderer\BootstrapRendererV4());
//horizontal form
$renderer = $form->getRenderer();
$renderer->setFormHorizontalOrientation();
//$renderer->setFormControlLabelWidth('col-sm-6');
//$renderer->setFormControlContainerWidth('col-sm-6');
$form->addEmail('exampleInputEmail1', 'Email address:')
->setHtmlAttribute('placeholder', 'Enter email')
->setOption('description', 'We\'ll never share your email with anyone else.');
$form->addPassword('exampleInputPassword1', 'Password')
->setHtmlAttribute('placeholder', 'Password');
$form->addCheckbox('checkbox', 'Check me out');
$form->addCheckbox('checkbox2', 'Check me out2');
$form->addRadioList('country', 'Country', [
'cz' => 'Česká republika',
'sk' => 'Slovensko',
'eu' => 'EU',
]);
$form->addEmail('exampleInputEmail2', 'Email address')
->setHtmlAttribute('placeholder', '[email protected] ');
$form->addSelect('exampleSelect', 'Example select', [
'1',
'2',
'3',
'4',
'5', ]);
$form->addMultiSelect('exampleMultipleSelect', 'Example multiple select', [
'1',
'2',
'3',
'4',
'5', ]);
$form->addTextArea('textarea', 'Example textarea');
$form->addUpload('upload', 'Example upload');
$form->addMultiUpload('multiUpload', 'Example multiUpload');
//sizes
$form->addEmail('formControlLg', '.form-control-lg')
->setHtmlAttribute('class', 'form-control-lg')
->setHtmlAttribute('placeholder', '.form-control-lg');
$form->addEmail('formControl', '.form-control')
->setHtmlAttribute('placeholder', 'Default input');
$form->addEmail('formControlSm', '.form-control-sm')
->setHtmlAttribute('class', 'form-control-sm')
->setHtmlAttribute('placeholder', '.form-control-sm');
//sizes select
$form->addSelect('largeSelect', 'Large select', ['Large select'])
->setHtmlAttribute('class', 'form-control-lg');
$form->addSelect('defaultSelect', ' Default select', ['Default select']);
$form->addSelect('smallSelect', 'Small select', ['Small select'])
->setHtmlAttribute('class', 'form-control-sm');
//disables
$form->addText('disabled', 'Disabled:')
->setHtmlAttribute('placeholder', 'Disabled input here…')
->setDisabled(true);
$form->addSubmit('submit', 'Submit')->setHtmlAttribute('class', 'btn btn-primary');
return $form;
$form = new Form;
$form->setRenderer(new VencaX\NetteFormRenderer\BootstrapRendererV4());
//horizontal form
$renderer = $form->getRenderer();
$renderer->setFormHorizontalOrientation();
//$renderer->setFormControlLabelWidth('col-sm-6');
//$renderer->setFormControlContainerWidth('col-sm-6');
//!!!!!!!!! this orientation **don't work** !!!!!!!!!!!!!!!!!
$form->addCheckbox('mondayCheckbox', 'Monday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('tuesdayCheckbox', 'Tuesday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('wednesdayCheckbox', 'Wednesday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('thurstdayCheckbox', 'Thurstday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('fridayCheckbox', 'Friday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('saturdayCheckbox', 'Saturday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addCheckbox('sundayCheckbox', 'Sunday')->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addRadioList('weekRadionline', 'Week radio 2', [
'monday' => 'Monday',
'tuesday' => 'Tuesday',
'wednesday' => 'Wednesday',
'thurstday' => 'Thurstday',
'friday' => 'Friday',
'saturday' => 'Saturday',
'sunday' => 'Sunday',
])->setOption('orientation', VencaX\NetteFormRenderer\BootstrapRendererV4::FORM_CHECK_INLINE);
$form->addSubmit('submit', 'Submit')->setHtmlAttribute('class', 'btn btn-primary');
return $form;
$form = new Form;
$form->setRenderer(new VencaX\NetteFormRenderer\BootstrapRendererV4());
//inline form
$renderer = $form->getRenderer();
$renderer->setFormInline();
$form->addEmail('loginemail', 'E-mail address:')
->setHtmlAttribute('placeholder', 'Enter e-mail');
$form->addPassword('password', 'Password')
->setHtmlAttribute('placeholder', 'Password');
$form->addCheckbox('checkbox', 'Check me out');
$form->addSubmit('submit', 'Submit')->setHtmlAttribute('class', 'btn btn-primary');
return $form;