Files
michaelschiemer/config/cms/default-content-types.php
2025-11-24 21:28:25 +01:00

33 lines
756 B
PHP

<?php
declare(strict_types=1);
/**
* Default CMS Content Types Configuration
*
* This file defines the standard content types that will be seeded
* when running the DefaultContentTypesSeeder.
*
* You can modify this file to customize the default content types
* without changing the seeder code.
*/
return [
'page' => [
'name' => 'Page',
'description' => 'Standard pages for general content',
'isSystem' => true,
],
'post' => [
'name' => 'Post',
'description' => 'Blog posts and news articles',
'isSystem' => true,
],
'landing_page' => [
'name' => 'Landing Page',
'description' => 'Marketing landing pages for campaigns',
'isSystem' => true,
],
];