Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/satrun77/mooflashcardadminbundle
- Owner: satrun77
- License: mit
- Archived: true
- Created: 2013-10-17T07:14:58.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-01-29T07:22:46.000Z (almost 9 years ago)
- Last Synced: 2024-09-29T16:22:05.286Z (about 2 months ago)
- Topics: bundle, php, symfony, symfony-bundle
- Language: PHP
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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