HosipLan

Untitled

Oct 4th, 2012
124
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.  
  13. {$snipet['street']->control} {$snipet['street']->label}
  14. {$snipet['city']->control} {$snipet['city']->label}
  15. {$snipet['zip']->control} {$snipet['zip']->label}
  16.  
  17. {/foreach}
  18.  
  19.  
  20.  
  21. chyba na riadku 23:
  22. 21: <?php $iterations = 0; foreach ($form['snippety']->containers as $snipet): ?>
  23. 22:
  24. 23: <?php echo Nette\Templating\Helpers::escapeHtml($snipet['name']->control, ENT_NOQUOTES) ?>
Advertisement
Add Comment
Please, Sign In to add comment