https://github.com/eduandebruijne/admin-bundle
A simple to use Symfony based CMS
https://github.com/eduandebruijne/admin-bundle
admin cms symfony
Last synced: 7 months ago
JSON representation
A simple to use Symfony based CMS
- Host: GitHub
- URL: https://github.com/eduandebruijne/admin-bundle
- Owner: eduandebruijne
- License: mit
- Created: 2021-11-15T17:34:29.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-11-18T19:11:25.000Z (8 months ago)
- Last Synced: 2025-11-18T21:06:54.483Z (8 months ago)
- Topics: admin, cms, symfony
- Language: PHP
- Homepage:
- Size: 11.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EDBAdminBundle
*A simple to use Symfony based CMS*
## Installation Instructions
#### Install using Composer
```bash
composer require eduandebruijne/admin-bundle
```
#### Create User Entity
```php
```
#### Optionally: Create User Admin
```php
title;
}
public function getTitle(): ?string
{
return $this->title;
}
public function setTitle(?string $title): void
{
$this->title = $title;
}
}
```
#### Example Page Admin
```php
add('title', TextType::class);
}
public function buildList(ListCollection $collection): void
{
$collection->add('title');
}
public static function getAdminMenuTitle(): string
{
return 'Pages';
}
public static function getEntityClass(): string
{
return Page::class;
}
}
```