An open API service indexing awesome lists of open source software.

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

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;
}
}
```