Skip to content

Instantly share code, notes, and snippets.

@Codenator81
Created June 18, 2014 09:15
Show Gist options
  • Save Codenator81/63bfaae35c5287324332 to your computer and use it in GitHub Desktop.
Save Codenator81/63bfaae35c5287324332 to your computer and use it in GitHub Desktop.
modxSmarty test
<?php
// snippet
<?php
$array = array(
"foo" => "bar",
"bar" => "foo",
100 => -100,
200 => 100,
);
$modx->smarty->assign('array',$array);
// template
$modx->runSnippet('testSmarty');
return $modx->smarty->fetch("test.tpl");
//test.tpl 10000
{field name=content}
{foreach $array as $object}
<li>{$object@key} - {$object}</li>
{/foreach}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment