HosipLan

Untitled

Oct 4th, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. presenter:
  2. $form->addDynamic('snippety', function (Container $snippets) use ($presenter) {
  3.                 $snippets->addText('street', 'Ulice');
  4.                 $snippets->addText('city', 'Město');
  5.                 $snippets->addText('zip', 'PSČ');
  6.         }, 1);
  7.  
  8.  
  9.  
  10. template:
  11. {foreach $form['snippety']->containers as $snipet}
  12.     {foreach $snipet->components as $control}
  13.             {$control->control} {$control->label}        
  14.         {/foreach}
  15. {/foreach}
Advertisement
Add Comment
Please, Sign In to add comment