mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 06:56:15 +00:00
#591 - sites [wip]
This commit is contained in:
@ -2,6 +2,8 @@
|
||||
|
||||
namespace App\SiteTypes;
|
||||
|
||||
use App\DTOs\DynamicFieldsCollectionDTO;
|
||||
|
||||
interface SiteType
|
||||
{
|
||||
public function language(): string;
|
||||
@ -11,6 +13,8 @@ public function language(): string;
|
||||
*/
|
||||
public function supportedFeatures(): array;
|
||||
|
||||
public function fields(): DynamicFieldsCollectionDTO;
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $input
|
||||
* @return array<string, mixed>
|
||||
@ -31,14 +35,6 @@ public function data(array $input): array;
|
||||
|
||||
public function install(): void;
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $input
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function editRules(array $input): array;
|
||||
|
||||
public function edit(): void;
|
||||
|
||||
/**
|
||||
* @return array<array<string, string>>
|
||||
*/
|
||||
|
Reference in New Issue
Block a user