2017 © Pedro Peláez
 

symfony-bundle user-admin-bundle

Provides a simple user admin.

image

xm/user-admin-bundle

Provides a simple user admin.

  • Thursday, May 10, 2018
  • by darrylhein
  • Repository
  • 2 Watchers
  • 0 Stars
  • 150 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 2 Open issues
  • 10 Versions
  • 25 % Grown

The README.md

XMUserAdminBundle

Provides a simple user admin., (*1)

CSS & JS + usage can be found in the Symfony Starter. You can also use your own CSS & JS., (*2)

Installation

Step 1: Download the Bundle

This package is not on Packagist, so the repository will need to be added manually in composer.json, (*3)

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:, (*4)

$ php composer.phar require xm/user-admin-bundle

This command requires Composer., (*5)

Step 2: Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:, (*6)

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new XM\UserAdminBundle\XMUserAdminBundle(),
        );

        // ...
    }
}

The Versions