Last active
October 20, 2018 03:06
-
-
Save Semdevmaster/09b273ca18bae362e7868deb1706ff18 to your computer and use it in GitHub Desktop.
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=0; $i<=15; $i++){ | |
| $res = $modx->newObject('modResource'); | |
| $res->set('template', 10); | |
| $res->set('isfolder', 0); | |
| $res->set('published', 1); | |
| $res->set('publishedon', time()); | |
| $res->set('createdon', time()); | |
| $res->set('pagetitle', 'СКУД '.$i); | |
| $res->set('alias', 'skud'.$i); | |
| $res->set('parent', 16); | |
| $res->save(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment