mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
957ac9f5d8
* Remove unnecessary save() on invoice * Update copyright * Working on Credit Repository * Implement credits as a paymentable entity * Add credit_id to transformer * fix rules for update payment * Fix random deleted_at keys in transformers * Fix for password_protect check
51 lines
1.1 KiB
PHP
51 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
use Nwidart\Modules\Facades\Module;
|
|
|
|
/**
|
|
* Class MakesMenu
|
|
* @package App\Utils\Traits
|
|
*/
|
|
trait MakesMenu
|
|
{
|
|
|
|
/**
|
|
* Builds an array of available modules for this view
|
|
* @param string $entity Class name
|
|
* @return array of modules
|
|
*/
|
|
public function makeEntityTabMenu(string $entity) : array
|
|
{
|
|
$tabs = [];
|
|
|
|
foreach (Module::getCached() as $module) {
|
|
if (!$module['sidebar']
|
|
&& $module['active'] == 1
|
|
&& in_array(strtolower(class_basename($entity)), $module['views'])) {
|
|
$tabs[] = $module;
|
|
}
|
|
}
|
|
|
|
return $tabs;
|
|
}
|
|
|
|
/**
|
|
* Builds an array items to be presented on the sidebar
|
|
* @return array menu items
|
|
*/
|
|
public function makeSideBarMenu()
|
|
{
|
|
}
|
|
}
|