aropixel/admin-bundle

Admin Aropixel

Installs: 2 198

Dependents: 4

Suggesters: 0

Security: 0

Stars: 3

Watchers: 3

Forks: 3

Open Issues: 5

Language:JavaScript

Type:symfony-bundle

v1.4.1 2024-02-22 16:49 UTC

This package is auto-updated.

Last update: 2024-04-19 11:26:14 UTC


README

Aropixel logo

Aropixel Admin Bundle

Aropixel Admin Bundle is a bootstrap admin bundle for your Symfony 4 projects. It provides a minimalist admin system with: login, logout, admin users crud, admin menu management.
You can plug compatible bundles to manage:

GitHub last commit GitHub issues License

Aropixel Admin Preview

Table of contents

Quick start

  • Create your symfony 4 project
  • Require Aropixel Admin Bundle : composer require aropixel/admin-bundle
  • If you get a "knplabs/knp-paginator-bundle" error, downgrade twig to version 2: composer require twig/twig ^2.0 and re-install the AdminBundle
  • Apply migrations
  • Create a "aropixel.yaml" file in config folder and configure according to you need:
aropixel_admin:
    client:
        name: "aropixel client"
    copyright:
        name: "Aropixel"
        link: "http://www.aropixel.com"
    theme:
        menu_position: left
  • Configure the security.yaml:
security:

    providers:
        admin_user_provider:
            entity:
                class: Aropixel\AdminBundle\Entity\User
                property: email

    encoders:
        Aropixel\AdminBundle\Entity\User:
            algorithm: argon2i
            cost: 12

    role_hierarchy:
        ROLE_USER:        [ROLE_USER]
        ROLE_ADMIN:       [ROLE_ADMIN]
        ROLE_SUPER_ADMIN: [ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH]
        ROLE_HYPER_ADMIN: [ROLE_SUPER_ADMIN, ROLE_ALLOWED_TO_SWITCH]

    firewalls:
        backoffice:
            context: primary_auth
            pattern:            ^/admin
            form_login:
                provider:       admin_user_provider
                login_path:     aropixel_admin_security_login
                use_forward:    true
                use_referer:    true
                check_path:     aropixel_admin_security_check
                failure_path:   aropixel_admin_security_login
                default_target_path: _admin
            remember_me:
                secret:   '%kernel.secret%'
                lifetime: 2592000 # 1 month in seconds
                path:     /admin
            logout:
                path: aropixel_admin_security_logout
                target: aropixel_admin_security_login
            anonymous:    true
            guard:
                provider: admin_user_provider
                authenticators:
                    - Aropixel\AdminBundle\Security\LoginFormAuthenticator

        dev:
            pattern:  ^/(_(profiler|wdt)|css|images|js)/
            security: false

    access_control:
        - { path: ^/admin/login$, role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/admin/, role: ROLE_ADMIN }

  • Include the routes:
aropixel_admin:
    resource: '@AropixelAdminBundle/Resources/config/routing/aropixel.yml'
    prefix: /admin

  • Create your first admin access : php bin/console aropixel:admin:setup

  • Add the ConfigureMenuListener class in App Folder and register it as service

License

Aropixel Admin Bundle is under the MIT License