PHPackages                             moo/flashcardadmin-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. moo/flashcardadmin-bundle

AbandonedArchivedSymfony-bundle[Admin Panels](/categories/admin)

moo/flashcardadmin-bundle
=========================

Symfony bundle that provides admin classes that be used with SonataAdminBundle.

v1.0.3(10y ago)029MITPHPPHP &gt;=5.3.2

Since Dec 6Pushed 10y ago1 watchersCompare

[ Source](https://github.com/satrun77/MooFlashCardAdminBundle)[ Packagist](https://packagist.org/packages/moo/flashcardadmin-bundle)[ Docs](https://github.com/satrun77/FlashCardAdminBundle)[ RSS](/packages/moo-flashcardadmin-bundle/feed)WikiDiscussions master Synced 5d ago

READMEChangelog (1)Dependencies (1)Versions (4)Used By (0)

FlashCardAdminBundle
====================

[](#flashcardadminbundle)

[![SensioLabsInsight](https://camo.githubusercontent.com/f1dda083739b4823c8d44c13d8d39c1641b207f14d307e5ca8c1173671cb4db4/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f32306331336131362d343638312d343138372d396633642d3835636666663336303431342f6d696e692e706e67)](https://insight.sensiolabs.com/projects/20c13a16-4681-4187-9f3d-85cfff360414)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/873358a3c67c3a3e7275ce5b1181a7d2b272aec8a94f5122166a859864e82088/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f73617472756e37372f4d6f6f466c6173684361726441646d696e42756e646c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](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
--------

[](#features)

#### Version 1.0.0

[](#version-100)

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

License
-------

[](#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)
----------------------

[](#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.

[](#1-download-flashcardadminbundle-with-composer)

Add the following to your composer.json:

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

Install the bundle by executing the following command:

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

### 2. Add the bundle configurations.

[](#2-add-the-bundle-configurations)

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

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

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

[](#3-enable-the-bundle-in-your-application-kernel)

```
