Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/satrun77/mooflashcardadminbundle

☠️ legacy code - The FlashCardAdminBundle is a Symfony2 bundle that provides admin classes that be used with SonataAdminBundle.
https://github.com/satrun77/mooflashcardadminbundle

bundle php symfony symfony-bundle

Last synced: about 2 months ago
JSON representation

☠️ legacy code - The FlashCardAdminBundle is a Symfony2 bundle that provides admin classes that be used with SonataAdminBundle.

Awesome Lists containing this project

README

        

FlashCardAdminBundle
=============
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/20c13a16-4681-4187-9f3d-85cfff360414/mini.png)](https://insight.sensiolabs.com/projects/20c13a16-4681-4187-9f3d-85cfff360414)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/satrun77/MooFlashCardAdminBundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/satrun77/MooFlashCardAdminBundle/?branch=master)

The FlashCardAdminBundle is a Symfony2 bundle that provides admin classes that be used with SonataAdminBundle.

## Features

#### Version 1.0.0
- 2 admin classes one for managing cards, and the other one for managing card categories.

## License

This bundle is under the MIT license. View the [LICENSE.md](LICENSE.md) file for the full copyright and license information.

## Installation (5 steps)

>___
> Assuming that you have [SonataAdminBundle](http://sonata-project.org/bundles/admin/master/doc/index.html) installed and configured.
>___

### 1. Download FlashCardAdminBundle with composer.

Add the following to your composer.json:

```yml
{
"require": {
"moo/flashcardadmin-bundle": "*"
}
}
```

Install the bundle by executing the following command:

``` bash
$ php composer.phar update moo/flashcardadmin-bundle
```

### 2. Add the bundle configurations.

Open your application base configuration file `app/config/config.yml` and add the following to the imports section.

```yml
imports:
# ....
- { resource: "@MooFlashCardAdminBundle/Resources/config/admin.yml" }
```

### 3. Enable the bundle in your application kernel.

``` php