PHPackages                             dartmoon/prestashop-tabmanager - 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. dartmoon/prestashop-tabmanager

ActiveLibrary[Admin Panels](/categories/admin)

dartmoon/prestashop-tabmanager
==============================

Library to easy the creation of backoffice menu tabs for PrestaShop

v0.1.2(5y ago)03121MIT

Since Mar 20Compare

[ Source](https://github.com/dartmoon-io/prestashop-tabmanager)[ Packagist](https://packagist.org/packages/dartmoon/prestashop-tabmanager)[ RSS](/packages/dartmoon-prestashop-tabmanager/feed)WikiDiscussions Synced yesterday

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

Prestashop TabManager
=====================

[](#prestashop-tabmanager)

A simple package that allows you to add your controllers to the PrestaShop Backoffice menu. Simply define an array with all the menu items and let the package install them.

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

[](#installation)

1. Install the package

```
composer require dartmoon/prestashop-tabmanager
```

2. Define an array called `menu_tabs` inside the main class of your module

```
//...
protected $menu_tabs = [
    //
];
//...
```

4. Fix `install` and `unistall` method of your module

```
//...
public function install()
{
    if (
        parent::install()
        && TabManager::install($this->menu_tabs, $this)
        // && $this->registerHook(...)
    ) {
        //...

        return true;
    }

    return false;
}

public function uninstall()
{
    //...
    TabManager::uninstallForModule($this);
    return parent::uninstall();
}
//...
```

Usage
-----

[](#usage)

Simply add all the menu items to the `menu_tabs` array.

```
protected $menu_tabs = [
    [// This is a parent tab
        'name' => 'Parent tab',
        'class_name' => 'UNIQUE_TAB_NAME',
        'route_name' => '',
        'parent_class_name' => '',
        'icon' => 'settings',
        'visible' => true,
    ],
    [ // This a child of the previus tab
        'name' => 'Child tab',
        'class_name' => 'MySuperClass', // Remember that the controller class name is MySuperClassController, but we need to add it without the suffix "Controller"
        'route_name' => '',
        'parent_class_name' => 'UNIQUE_TAB_NAME',
        'icon' => '',
        'visible' => true,
    ],
];
```

License
-------

[](#license)

This project is licensed under the MIT License - see the LICENSE.md file for details

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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.

###  Release Activity

Cadence

Every ~14 days

Total

3

Last Release

1904d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2efeef5805499c8446aee9d5cbb924e27978d6efceff1cb0d4865ffd2e937d86?d=identicon)[alessandro1105](/maintainers/alessandro1105)

---

Top Contributors

[![alessandro1105](https://avatars.githubusercontent.com/u/4523050?v=4)](https://github.com/alessandro1105 "alessandro1105 (13 commits)")

### Embed Badge

![Health badge](/badges/dartmoon-prestashop-tabmanager/health.svg)

```
[![Health](https://phpackages.com/badges/dartmoon-prestashop-tabmanager/health.svg)](https://phpackages.com/packages/dartmoon-prestashop-tabmanager)
```

PHPackages © 2026

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