Skip to content

Instantly share code, notes, and snippets.

@alexburma
Last active June 4, 2022 18:40
Show Gist options
  • Save alexburma/8974140 to your computer and use it in GitHub Desktop.
Save alexburma/8974140 to your computer and use it in GitHub Desktop.
Modx Revo (auto-change templates)
<?php
$resources = $modx->getCollection('modResource',array('parent' => 1)); //1 is id of parent container
foreach ($resources as $res) {
$res->set('template', 2); // 2 is id of template
$res->save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment