I am looking for a way to add pages programmatically in SimpleCMSBundle. I found the following command line.
php app/console doctrine:phpcr:migrator page --identifier=/cms/simple/test
What I need is first a programmatic equivalent for the above command, secondly the above command assumes that there exists a .yml file located at 'app/Resources/data/ pages/test.yml, I want to provide this information programmatically too.
I am using Symfony CMF Standard edition.
The SimpleCmsBundle provides 2 ways of creating pages:
1. Creating a yaml file which will be parsed
This is done by a DataFixture. The AcmeDemoBundle comes with such a yaml file, which you can use to add your own page:
Now you need to execute
php app/console doctrine:phpcr:fixtures:load
, which will execute the DataFixtures, and the new page is created!2. Persisting the documents
What's really done with the yaml data is that a
Page
document is created and persisted in the PHPCR tree. Inside a DataFixture, or in a controller/admin where you want to add a page, do the following:For more information: http://symfony.com/doc/current/cmf/book/database_layer.html