PHPackages                             nullref/yii2-full-admin - 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. nullref/yii2-full-admin

ActiveYii2-extension[Admin Panels](/categories/admin)

nullref/yii2-full-admin
=======================

34791PHP

Since Apr 7Pushed 6y ago4 watchersCompare

[ Source](https://github.com/NullRefExcep/yii2-full-admin)[ Packagist](https://packagist.org/packages/nullref/yii2-full-admin)[ RSS](/packages/nullref-yii2-full-admin/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Yii2 Full Admin
===============

[](#yii2-full-admin)

[![Latest Stable Version](https://camo.githubusercontent.com/75a34a351a6240dd567266c12f00e325fd0080599ab25d442c2f1277451d571e/68747470733a2f2f706f7365722e707567782e6f72672f6e756c6c7265662f796969322d66756c6c2d61646d696e2f762f737461626c65)](https://packagist.org/packages/nullref/yii2-full-admin) [![Total Downloads](https://camo.githubusercontent.com/b70e88daeef452c246c82f16b53ef2fb2b6579deaa8a2ee8ce0e4f53cca85dc6/68747470733a2f2f706f7365722e707567782e6f72672f6e756c6c7265662f796969322d66756c6c2d61646d696e2f646f776e6c6f616473)](https://packagist.org/packages/nullref/yii2-full-admin) [![Latest Unstable Version](https://camo.githubusercontent.com/e79e6971659f5a47dc9886b1e2b388d4ff12cd30b77fbd9d147e32b38fe49884/68747470733a2f2f706f7365722e707567782e6f72672f6e756c6c7265662f796969322d66756c6c2d61646d696e2f762f756e737461626c65)](https://packagist.org/packages/nullref/yii2-full-admin) [![License](https://camo.githubusercontent.com/c93983871b8cdd4443baccd27ef29e1e53515e9fd158282861c47c19e06fb2b8/68747470733a2f2f706f7365722e707567782e6f72672f6e756c6c7265662f796969322d66756c6c2d61646d696e2f6c6963656e7365)](https://packagist.org/packages/nullref/yii2-full-admin)

Module for administration with user management

Installation
------------

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
php composer.phar require --prefer-dist nullref/yii2-full-admin "*"

```

or add

```
"nullref/yii2-full-admin": "*"

```

to the require section of your `composer.json` file.

Then You have run console command for install this module and run migrations:

```
php yii module/install nullref/yii2-full-admin

```

Also, you have to add `\nullref\fulladmin\Bootstrap` class to bootstrap:

```
//config
    'bootstrap' => [
        //..
        \nullref\fulladmin\Bootstrap::class,
        //...
    ],
```

Pay attention that if you don't use our [application template](https://github.com/NullRefExcep/yii2-boilerplate)it needs to change config files structure to have ability run commands that show above.

Please check this [documentation section](https://github.com/NullRefExcep/yii2-core#config-structure)

### Admin Menu

[](#admin-menu)

For adding items to admin menu you have to implement IAdminModule interface, e.g.:

```
public static function getAdminMenu()
   {
       return [
           'label' => \Yii::t('admin', 'Subscription'),
           'icon' => 'envelope',
           'order' => 0,
           'items' => [
               'emails' => ['label' => \Yii::t('app', 'Subscribers'), 'icon' => 'envelope-o', 'url' => ['/subscription/email/index']],
               'messages' => ['label' => \Yii::t('app', 'Messages'), 'icon' => 'envelope-o', 'url' => ['/subscription/message/index']],
           ]
       ];
   }
```

### Admin Controller

[](#admin-controller)

If you use `IAdminController` interface in controller, admin layout and default access rule will be set in controller before action.

### Modules system

[](#modules-system)

This module integrated in system which contain other useful components. [View details](https://github.com/NullRefExcep/yii2-core)

### Overriding

[](#overriding)

Example:

```
/** module config **/

'admin' => [
   'class' => 'nullref\admin\Module',
   'controllerMap' => [  //controllers
      'main' => 'app\modules\admin\controllers\MainController',
   ],
   'components' => [  //menu builder
      'menuBuilder' => 'app\\components\\MenuBuilder',
   ],
],
```

And [translations](https://github.com/NullRefExcep/yii2-core#translation-overriding)

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

 Bus Factor1

Top contributor holds 86% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/d5e9417df48f462cf27e16429bed321f138e1db5b943c6b026aab97b86b42b55?d=identicon)[ZAYEC77](/maintainers/ZAYEC77)

---

Top Contributors

[![ZAYEC77](https://avatars.githubusercontent.com/u/4509483?v=4)](https://github.com/ZAYEC77 "ZAYEC77 (43 commits)")[![lijkbezorger](https://avatars.githubusercontent.com/u/12811869?v=4)](https://github.com/lijkbezorger "lijkbezorger (7 commits)")

---

Tags

yii2yii2-adminyii2-extension

### Embed Badge

![Health badge](/badges/nullref-yii2-full-admin/health.svg)

```
[![Health](https://phpackages.com/badges/nullref-yii2-full-admin/health.svg)](https://phpackages.com/packages/nullref-yii2-full-admin)
```

###  Alternatives

[jeroennoten/laravel-adminlte

Easy AdminLTE integration with Laravel

4.0k4.8M43](/packages/jeroennoten-laravel-adminlte)[dmstr/yii2-adminlte-asset

AdminLTE backend theme asset bundle for Yii 2.0 Framework

1.1k1.8M67](/packages/dmstr-yii2-adminlte-asset)[dwij/laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin Backend, Data Management Tool or CRM boilerplate for Laravel with features like CRUD Generation, Module Manager, Media, Menus, Backups and much more

1.6k68.7k](/packages/dwij-laraadmin)[filament/spatie-laravel-media-library-plugin

Filament support for `spatie/laravel-medialibrary`.

1764.8M125](/packages/filament-spatie-laravel-media-library-plugin)[bezhansalleh/filament-exceptions

A Simple &amp; Beautiful Pluggable Exception Viewer for FilamentPHP's Admin Panel

193195.9k13](/packages/bezhansalleh-filament-exceptions)[filament/infolists

Easily add beautiful read-only infolists to any Livewire component.

1220.8M36](/packages/filament-infolists)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
