mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
17 lines
408 B
PHP
17 lines
408 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Plugins;
|
||
|
|
||
|
interface Hook
|
||
|
{
|
||
|
/**
|
||
|
* Will be called by the plugin manager to check if the user is authorized. Will be called with Dependency Injection.
|
||
|
*/
|
||
|
// public function authorize(): bool;
|
||
|
|
||
|
/**
|
||
|
* Will be called by the plugin manager to execute this plugin at the correct time. Will be called with Dependency Injection.
|
||
|
*/
|
||
|
// public function handle();
|
||
|
}
|