Files
librenms-librenms/app/Plugins/Hooks/PortTabHook.php
Jellyfrog 071ca9bc2a Apply fixes from StyleCI (#15698)
Co-authored-by: StyleCI Bot <bot@styleci.io>
2024-01-04 22:39:12 -06:00

60 lines
1.7 KiB
PHP

<?php
/*
* PortPluginTab.php
*
* -Description-
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2021 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace App\Plugins\Hooks;
use App\Models\Port;
use App\Models\User;
use App\Plugins\Hook;
use Illuminate\Contracts\Foundation\Application;
use Illuminate\Support\Str;
abstract class PortTabHook implements Hook
{
/** @var string */
public $view = 'resources.views.port-tab';
public function authorize(User $user, Port $port): bool
{
return true;
}
public function data(Port $port): array
{
return [
'title' => __CLASS__,
'port' => $port,
];
}
final public function handle(string $pluginName, Port $port, array $settings, Application $app): \Illuminate\Contracts\View\View
{
return view(Str::start($this->view, "$pluginName::"), $app->call([$this, 'data'], [
'port' => $port,
'settings' => $settings,
]));
}
}