Created
October 14, 2011 02:40
-
-
Save oksushi/1286118 to your computer and use it in GitHub Desktop.
MODX: Plugin to create sub document on save - apply OnDocFormSave
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 | |
if ($mode == 'new') { | |
$new = $modx->newObject('modDocument'); | |
$new->set('parent',$id); | |
$new->set('pagetitle','My New Pagetitle'); | |
$new->save(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment