Skip to content

Instantly share code, notes, and snippets.

@Codenator81
Created June 18, 2014 09:11
Show Gist options
  • Save Codenator81/de306d9258da594c3764 to your computer and use it in GitHub Desktop.
Save Codenator81/de306d9258da594c3764 to your computer and use it in GitHub Desktop.
Twig template
<?php
// foreachTwig snippet
$array = array(
"foo" => "bar",
"bar" => "foo",
100 => -100,
200 => 100,
);
$modx->twig->addGlobal('array' , $array);
//template testTwig
$modx->runSnippet('foreachTwig');
$modx->twig->render('test.twig');
//test.twig 10000
{{ modx.resource.content }}
{% for key, value in array %}
<li> {{ key }} - {{ value }}</li>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment