Skip to content

Instantly share code, notes, and snippets.

@hansek
Created March 28, 2012 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hansek/2228776 to your computer and use it in GitHub Desktop.
Save hansek/2228776 to your computer and use it in GitHub Desktop.
MODX Revolution Snippet for bulk assignment of all Resources into defined Resource Group
<?php
$docArray = $modx->getCollection('modResource');
foreach($docArray as $doc) {
$doc->joinGroup('GroupName');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment