Skip to content

Instantly share code, notes, and snippets.

@em-piguet
Last active August 29, 2015 14:13
Show Gist options
  • Save em-piguet/18330f2aac1aeec00946 to your computer and use it in GitHub Desktop.
Save em-piguet/18330f2aac1aeec00946 to your computer and use it in GitHub Desktop.
changeTemplate (batch resources)
/*
[[changeTemplate &parent=`ID` &template=`ID`]]
*/
foreach ($modx->getIterator('modResource', array('parent' =>$parent)) as $res) {
$res->set('template',$template);
$res->save();
echo ('Mise à jour du template OK <br/>');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment