mirror of
https://github.com/pelican-dev/panel.git
synced 2025-11-09 16:19:35 +01:00
19 lines
316 B
PHP
19 lines
316 B
PHP
<?php
|
|
|
|
namespace App\Contracts\Plugins;
|
|
|
|
use Filament\Forms\Components\Component;
|
|
|
|
interface HasPluginSettings
|
|
{
|
|
/**
|
|
* @return Component[]
|
|
*/
|
|
public function getSettingsForm(): array;
|
|
|
|
/**
|
|
* @param array<mixed, mixed> $data
|
|
*/
|
|
public function saveSettings(array $data): void;
|
|
}
|