Guest User

Untitled

a guest
Oct 4th, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  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. template:
  9. {foreach $form['snippety']->containers as $snipet}
  10.  
  11. {$snipet['name']->control} {$snipet['name']->label}
  12.  
  13. {/foreach}
  14.  
  15. chyba na riadku 23:
  16. 21: <?php $iterations = 0; foreach ($form['snippety']->containers as $snipet): ?>
  17. 22:
  18. 23: <?php echo Nette\Templating\Helpers::escapeHtml($snipet['name']->control, ENT_NOQUOTES) ?>
Advertisement
Add Comment
Please, Sign In to add comment