Skip to content

Instantly share code, notes, and snippets.

@sonicpunk
Last active October 20, 2015 08:55
Show Gist options
  • Save sonicpunk/5b544bc872f382901fa1 to your computer and use it in GitHub Desktop.
Save sonicpunk/5b544bc872f382901fa1 to your computer and use it in GitHub Desktop.
migxQuickParser
<?php
$input = $modx->fromJSON($input);
$i=0;
$output = array();
if (!$input || empty($tpl)) return 'no stuff';
foreach ($input as $row) {
$i++;
$row['idx']=$i;
$output[] = $modx->getChunk($tpl, $row);
}
return implode("\n", $output);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment