Created
December 20, 2019 09:53
-
-
Save crystaldaking/503adf2afdb264f4a966d44dce4f3d19 to your computer and use it in GitHub Desktop.
перегенировать uri modx
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 | |
$q = $modx->newQuery('modResource', array( | |
'parent:IN' => array(0), // Перечисляем id разделов, если надо, но если документов не очень много, то можно с корня | |
)); | |
// Это условие указывает поиск только документов без uri | |
$q->andCondition(array( | |
'uri' => null, | |
'OR:uri:=' => '', | |
)); | |
// Вот этот вывод полезен, если убрать условие родителя | |
print "Всего найдено документов по условию: " . $modx->getCount('modResource', $q); | |
// Сортируем по id | |
$q->sortby('id'); | |
// Указываем лимит | |
$q->limit(1); | |
foreach ($modx->getCollection('modResource', $q) as $doc) { | |
$modx->error->reset(); | |
$modx->runProcessor('resource/update', $doc->toArray()); | |
if ($modx->error->hasError()) { | |
print_r($modx->error->getErrors()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment