Skip to content

Instantly share code, notes, and snippets.

@em-piguet
Last active August 29, 2015 14:13
Show Gist options
  • Save em-piguet/44ffa0489556b0955c0c to your computer and use it in GitHub Desktop.
Save em-piguet/44ffa0489556b0955c0c to your computer and use it in GitHub Desktop.
Batch resources value in MODX
/*
[[changeValue? &parent=`` &field=`` &value=`` ]]
*/
foreach ($modx->getIterator('modResource', array('parent' =>$parent)) as $res) {
$res->set($field,$value);
$res->save();
echo ($action.'=>'.$value.'! <br/>');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment