Skip to content

Instantly share code, notes, and snippets.

@Codenator81
Created June 23, 2014 18:44
Show Gist options
  • Save Codenator81/aa829d1cf16dd2938cba to your computer and use it in GitHub Desktop.
Save Codenator81/aa829d1cf16dd2938cba to your computer and use it in GitHub Desktop.
Return Array in Snippet MODX
<?php
if($s = $modx->getObject('modSnippet', [
'name' => 'имя сниппета',
])){
$s->loadScript();
$f = $s->getScriptName();
$params = array('foo' => $foo);
$func = $f($params);
return $func;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment