mirror of
https://github.com/Karaka-Management/oms-Billing.git
synced 2026-01-11 15:18:42 +00:00
41 lines
954 B
PHP
41 lines
954 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\Billing\Admin
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.2
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use Modules\Billing\Controller\ApiController;
|
|
use Modules\Billing\Models\SettingsEnum;
|
|
|
|
return [
|
|
[
|
|
'type' => 'setting',
|
|
'name' => SettingsEnum::VALID_BILL_LANGUAGES,
|
|
'content' => '["en","de"]',
|
|
'pattern' => '',
|
|
'module' => ApiController::NAME,
|
|
],
|
|
[
|
|
'type' => 'setting',
|
|
'name' => SettingsEnum::BILLING_DOCUMENT_SPACER_COLOR,
|
|
'content' => '15613766',
|
|
'pattern' => '\d',
|
|
'module' => ApiController::NAME,
|
|
],
|
|
[
|
|
'type' => 'setting',
|
|
'name' => SettingsEnum::BILLING_DOCUMENT_SPACER_TOLERANCE,
|
|
'content' => '175',
|
|
'pattern' => '\d',
|
|
'module' => ApiController::NAME,
|
|
],
|
|
];
|