Create Cms Page from PHP code
1
Use this code to programatically create a CMS Page with URL/Title translations:
$page = new \Cms\Classes\Page([
'fileName' => 'test-page',
'title' => 'My Page Title',
'url' => '/test-page',
'layout' => 'default',
]);
$page->attributes['viewBag'] = [
'localeUrl' => [
'fr' => '/french-URL',
'de' => '/deutch-URL',
],
'localeTitle' => [
'fr' => 'French Title',
'de' => 'Deutch Title',
],
];
$page->save();
(Note: to be used with Rainlab.Translate
or Winter.Translate
plugin)
Use this code to programatically create a CMS Page and attach a component:
$page = new \Cms\Classes\Page([
'fileName' => 'test-page',
'title' => 'My Page Title',
'url' => '/test-page',
'layout' => 'default',
]);
$page->attributes['myComponent'] = [];
$page->save();
Hello,
When adding this in my Plugin.php boot function it errors because the page already exists. How do I prevent this error, and only generate the page on first plugin initialisation?
Hello :) i have a simple function that list all page in the current thème, you can use it to prevent if the page already exists
public function listUrlIntern(){ $currentTheme = Theme::getEditTheme(); $allPages = Page::listInTheme($currentTheme, true); $options = []; foreach ($allPages as $pg) { $options[str_replace('.htm', '', $pg->fileName)] = $pg->title; } return $options; }