Skip to content

Instantly share code, notes, and snippets.

@EdwardIII
Created March 19, 2013 09:55
Show Gist options
  • Save EdwardIII/5194886 to your computer and use it in GitHub Desktop.
Save EdwardIII/5194886 to your computer and use it in GitHub Desktop.
<?php
/* build query */
$c = $modx->newQuery('fmzForms');
$c->where(array(
'id' => 1
));
$form = $modx->getObjectGraph('fmzForms', array(
'Fields' => array(
'Validation' => array()
),
), $c);
return print_r($form, true);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment