Skip to content

Instantly share code, notes, and snippets.

@Goram
Last active December 23, 2015 04:19
Show Gist options
  • Save Goram/6579935 to your computer and use it in GitHub Desktop.
Save Goram/6579935 to your computer and use it in GitHub Desktop.
<?php
$form = $serviceLocator->get('Application\Form\User\CreateForm');
$form->getFormFactory()->configureFieldset(
$form->get('user'),
array(
'elements' => array(
array(
'spec' => array(
'name' => 'username3',
'type' => 'Text',
'options' => array(
'label' => 'Benutzername2*:'
),
'attributes' => array(
'maxlength' => 255
)
)
)
),
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment