mirror of
https://github.com/Karaka-Management/oms-Tag.git
synced 2026-01-10 15:28:39 +00:00
27 lines
577 B
PHP
27 lines
577 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\Tag\Admin
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use Modules\Tag\Controller\ApiController;
|
|
use Modules\Tag\Models\SettingsEnum;
|
|
|
|
return [
|
|
[
|
|
'type' => 'setting',
|
|
'name' => SettingsEnum::TAG_COLOR_PALLET,
|
|
'content' => '["#ff000000","#ff00ff00","#ffffffff"]',
|
|
'pattern' => '/(#[a-fA-F0-9]{8};)*(#[a-fA-F0-9]{8})/',
|
|
'module' => ApiController::NAME,
|
|
],
|
|
];
|