Skip to content

Instantly share code, notes, and snippets.

@muks999
Last active October 11, 2018 08:40
Show Gist options
  • Save muks999/690f007edbdaa19c95f091f5118f1d91 to your computer and use it in GitHub Desktop.
Save muks999/690f007edbdaa19c95f091f5118f1d91 to your computer and use it in GitHub Desktop.
Массовая смена шаблона в MODxREVO
$resources = $modx->getCollection('modResource',array('parent' => 19)); //берем ресурсы из категории "19"
foreach ($resources as $res) {
$res->set('template', 3); //устанавливаем им шаблон "3"
$res->save(); //сохраняем...
}
@muks999
Copy link
Author

muks999 commented Oct 11, 2018

так же можно использовать дополнение Batcher!!!!!!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment