Created
March 28, 2012 18:00
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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