This file contains hidden or 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 | |
| for ($i=1; $i<=15; $i++){ // Запускаем счётчик, кол-во создаваемых ресурсов | |
| $res = $modx->newObject('modResource'); | |
| $res->set('template', 10); // Указываем id создаваемого шаблона | |
| $res->set('isfolder', 0); // Является ли создаваемый ресурс контейнером, 0 - нет, 1 - да | |
| $res->set('published', 1); // Будет опубликован, 0 - нет, 1 - да | |
| $res->set('publishedon', time()); | |
| $res->set('createdon', time()); | |
| $res->set('pagetitle', 'Ресурс '.$i); // Имя создаваемого ресурса | |
| $res->set('alias', 'resource'.$i); // Псевдоним ресурса |