# packeta/trunk/deps/nette/forms/examples/bootstrap3-rendering.php

Packeta, version trunk. 76 lines.

- Page: https://pluginprobe.com/plugins/packeta/trunk/code/deps/nette/forms/examples/bootstrap3-rendering.php
- Raw: https://pluginprobe.com/plugins/packeta/trunk/raw/deps/nette/forms/examples/bootstrap3-rendering.php
- Modified: 2025-03-10T10:47:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/packeta/trunk/code/deps/nette/forms/examples/bootstrap3-rendering.php#L10-L20`.

```php
<?php

/**
 * Nette Forms & Bootstap v3 rendering example.
 */
declare (strict_types=1);
namespace Packetery;

if (@(!(include __DIR__ . '/../vendor/autoload.php'))) {
    die('Install packages using `composer install`');
}
use Packetery\Nette\Forms\Form;
use Packetery\Tracy\Debugger;
use Packetery\Tracy\Dumper;
Debugger::enable();
function makeBootstrap3(Form $form) : void
{
    $renderer = $form->getRenderer();
    $renderer->wrappers['controls']['container'] = null;
    $renderer->wrappers['pair']['container'] = 'div class=form-group';
    $renderer->wrappers['pair']['.error'] = 'has-error';
    $renderer->wrappers['control']['container'] = 'div class=col-sm-9';
    $renderer->wrappers['label']['container'] = 'div class="col-sm-3 control-label"';
    $renderer->wrappers['control']['description'] = 'span class=help-block';
    $renderer->wrappers['control']['errorcontainer'] = 'span class=help-block';
    $form->getElementPrototype()->class('form-horizontal');
    foreach ($form->getControls() as $control) {
        $type = $control->getOption('type');
        if ($type === 'button') {
            $control->getControlPrototype()->addClass(empty($usedPrimary) ? 'btn btn-primary' : 'btn btn-default');
            $usedPrimary = \true;
        } elseif (\in_array($type, ['text', 'textarea', 'select'], \true)) {
            $control->getControlPrototype()->addClass('form-control');
        } elseif (\in_array($type, ['checkbox', 'radio'], \true)) {
            $control->getSeparatorPrototype()->setName('div')->addClass($type);
        }
    }
}
$form = new Form();
$form->onRender[] = 'makeBootstrap3';
$form->addGroup('Personal data');
$form->addText('name', 'Your name')->setRequired('Enter your name');
$form->addRadioList('gender', 'Your gender', ['male', 'female']);
$form->addCheckboxList('colors', 'Favorite colors', ['red', 'green', 'blue']);
$form->addSelect('country', 'Country', ['Buranda', 'Qumran', 'Saint Georges Island']);
$form->addCheckbox('send', 'Ship to address');
$form->addGroup('Your account');
$form->addPassword('password', 'Choose password');
$form->addUpload('avatar', 'Picture');
$form->addTextArea('note', 'Comment');
$form->addGroup();
$form->addSubmit('submit', 'Send');
$form->addSubmit('cancel', 'Cancel');
if ($form->isSuccess()) {
    echo '<h2>Form was submitted and successfully validated</h2>';
    Dumper::dump($form->getValues());
    exit;
}
?>
<!DOCTYPE html>
<meta charset="utf-8">
<title>Nette Forms & Bootstrap v3 rendering example</title>

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">

<div class="container">
	<div class="page-header">
		<h1>Nette Forms & Bootstrap v3 rendering example</h1>
	</div>

	<?php 
$form->render();
?>
</div>
<?php 

```
