Skip to content

Instantly share code, notes, and snippets.

@Sentinel-7
Created May 18, 2021 06:48
Show Gist options
  • Save Sentinel-7/617ad82b53e9aeba51d7fd8ffac72c5d to your computer and use it in GitHub Desktop.
Save Sentinel-7/617ad82b53e9aeba51d7fd8ffac72c5d to your computer and use it in GitHub Desktop.
Пересохранить все товары в console
<?php
$resources = $modx->getCollection('modResource', [
'class_key' => 'msProduct'
]);
foreach ($resources as $res) {
$res->save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment