문제

I would like to create an automated system that creates new Document (Resources Pages) using PHP instead of the UI. However I cant find any tutorial on how to do that from PHP.

Does anyone know how could I do that or if I can do that?

I am using Modx Revolution

도움이 되었습니까?

해결책

This should do it:

$resource = $modx->newObject('modResource');
$resource->fromArray(array(
    'pagetitle' => 'My Resource Title',
    // add other resource properties here
));
$resource->save();

There are some forum posts and articles out there that will help you with this, if you Google hard enough...

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top