mirror of
https://github.com/Karaka-Management/oms-Balance.git
synced 2026-01-11 07:08:41 +00:00
auto fixes + some impl.
This commit is contained in:
parent
a91a083bfb
commit
d9a6471683
|
|
@ -21,7 +21,6 @@ use phpOMS\Message\Http\HttpRequest;
|
|||
use phpOMS\Message\Http\HttpResponse;
|
||||
use phpOMS\Module\InstallerAbstract;
|
||||
use phpOMS\Module\ModuleInfo;
|
||||
use phpOMS\Uri\HttpUri;
|
||||
|
||||
/**
|
||||
* Installer class.
|
||||
|
|
@ -51,7 +50,7 @@ final class Installer extends InstallerAbstract
|
|||
self::importStructures($app);
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* Import accounts
|
||||
*
|
||||
* @param ApplicationAbstract $app Application
|
||||
|
|
@ -72,7 +71,7 @@ final class Installer extends InstallerAbstract
|
|||
}
|
||||
|
||||
$response = new HttpResponse();
|
||||
$request = new HttpRequest(new HttpUri(''));
|
||||
$request = new HttpRequest();
|
||||
|
||||
$request->header->account = 1;
|
||||
$request->setData('code', \strtolower(\basename($file)));
|
||||
|
|
@ -86,21 +85,18 @@ final class Installer extends InstallerAbstract
|
|||
: $responseData['response']->toArray();
|
||||
|
||||
$json = \json_decode(\file_get_contents(__DIR__ . '/Install/Coa/' . $file), true);
|
||||
|
||||
foreach ($json as $element) {
|
||||
self::createElement($module, [$element], (int) $balance['id'], null);
|
||||
}
|
||||
self::createElement($module, $json, (int) $balance['id'], null);
|
||||
}
|
||||
}
|
||||
|
||||
private static function createElement(ApiController $module, array $elements, int $structure, int $parent = null)
|
||||
private static function createElement(ApiController $module, array $elements, int $structure, ?int $parent = null) : void
|
||||
{
|
||||
$order = 0;
|
||||
foreach ($elements as $element) {
|
||||
++$order;
|
||||
|
||||
$response = new HttpResponse();
|
||||
$request = new HttpRequest(new HttpUri(''));
|
||||
$request = new HttpRequest();
|
||||
|
||||
$request->header->account = 1;
|
||||
$request->setData('code', $element['name']);
|
||||
|
|
@ -131,7 +127,7 @@ final class Installer extends InstallerAbstract
|
|||
}
|
||||
|
||||
$response = new HttpResponse();
|
||||
$request = new HttpRequest(new HttpUri(''));
|
||||
$request = new HttpRequest();
|
||||
|
||||
$request->header->account = 1;
|
||||
$request->setData('title', $l11n);
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ use phpOMS\Account\PermissionType;
|
|||
use phpOMS\Router\RouteVerb;
|
||||
|
||||
return [
|
||||
'^.*/controlling/balance/dashboard.*$' => [
|
||||
'^.*/controlling/balance/dashboard(\?.*$|$)' => [
|
||||
[
|
||||
'dest' => '\Modules\Balance\Controller\BackendController:viewBalanceDashboard',
|
||||
'verb' => RouteVerb::GET,
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ use Modules\Balance\Models\BalanceElementMapper;
|
|||
use Modules\Balance\Models\BalanceMapper;
|
||||
use phpOMS\Localization\BaseStringL11n;
|
||||
use phpOMS\Localization\ISO639x1Enum;
|
||||
use phpOMS\Message\Http\HttpResponse;
|
||||
use phpOMS\Message\Http\RequestStatusCode;
|
||||
use phpOMS\Message\RequestAbstract;
|
||||
use phpOMS\Message\ResponseAbstract;
|
||||
|
|
@ -95,7 +94,7 @@ final class ApiController extends Controller
|
|||
*/
|
||||
private function createBalanceFromRequest(RequestAbstract $request) : Balance
|
||||
{
|
||||
$balance = new Balance();
|
||||
$balance = new Balance();
|
||||
$balance->code = (string) $request->getData('code');
|
||||
$balance->name = (string) $request->getData('name');
|
||||
|
||||
|
|
@ -162,12 +161,16 @@ final class ApiController extends Controller
|
|||
*/
|
||||
private function createBalanceElementFromRequest(RequestAbstract $request) : BalanceElement
|
||||
{
|
||||
$element = new BalanceElement();
|
||||
$element->code = $request->getDataString('code') ?? '';
|
||||
$element = new BalanceElement();
|
||||
$element->code = $request->getDataString('code') ?? '';
|
||||
$element->balance = $request->getDataInt('balance') ?? 0;
|
||||
$element->order = $request->getDataInt('order') ?? 0;
|
||||
$element->order = $request->getDataInt('order') ?? 0;
|
||||
$element->parent = $request->getDataInt('parent');
|
||||
|
||||
$element->setL11n($request->getDataString('content') ?? '', $request->getDataString('language') ?? ISO639x1Enum::_EN);
|
||||
$element->setL11n(
|
||||
$request->getDataString('content') ?? '',
|
||||
ISO639x1Enum::tryFromValue($request->getDataString('language')) ?? ISO639x1Enum::_EN
|
||||
);
|
||||
|
||||
return $element;
|
||||
}
|
||||
|
|
@ -210,12 +213,10 @@ final class ApiController extends Controller
|
|||
*/
|
||||
private function createBalanceElementL11nFromRequest(RequestAbstract $request) : BaseStringL11n
|
||||
{
|
||||
$elementL11n = new BaseStringL11n();
|
||||
$elementL11n->ref = $request->getDataInt('ref') ?? 0;
|
||||
$elementL11n->setLanguage(
|
||||
$request->getDataString('language') ?? $request->header->l11n->language
|
||||
);
|
||||
$elementL11n->content = $request->getDataString('content') ?? '';
|
||||
$elementL11n = new BaseStringL11n();
|
||||
$elementL11n->ref = $request->getDataInt('ref') ?? 0;
|
||||
$elementL11n->language = ISO639x1Enum::tryFromValue($request->getDataString('language')) ?? $request->header->l11n->language;
|
||||
$elementL11n->content = $request->getDataString('content') ?? '';
|
||||
|
||||
return $elementL11n;
|
||||
}
|
||||
|
|
@ -240,4 +241,4 @@ final class ApiController extends Controller
|
|||
|
||||
return [];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ class Balance
|
|||
public function toArray() : array
|
||||
{
|
||||
return [
|
||||
'id' => $this->id,
|
||||
'id' => $this->id,
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -38,7 +38,9 @@ class BalanceElement
|
|||
public string $code = '';
|
||||
|
||||
public int $type = 0;
|
||||
|
||||
public string $formula = '';
|
||||
|
||||
public int $order = 0;
|
||||
|
||||
public int $balance = 0;
|
||||
|
|
@ -68,12 +70,12 @@ class BalanceElement
|
|||
if ($l11n instanceof BaseStringL11n) {
|
||||
$this->l11n = $l11n;
|
||||
} elseif (isset($this->l11n) && $this->l11n instanceof BaseStringL11n) {
|
||||
$this->l11n->content = $l11n;
|
||||
$this->l11n->setLanguage($lang);
|
||||
$this->l11n->content = $l11n;
|
||||
$this->l11n->language = $lang;
|
||||
} else {
|
||||
$this->l11n = new BaseStringL11n();
|
||||
$this->l11n->content = $l11n;
|
||||
$this->l11n->setLanguage($lang);
|
||||
$this->l11n = new BaseStringL11n();
|
||||
$this->l11n->content = $l11n;
|
||||
$this->l11n->language = $lang;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -97,7 +99,7 @@ class BalanceElement
|
|||
public function toArray() : array
|
||||
{
|
||||
return [
|
||||
'id' => $this->id,
|
||||
'id' => $this->id,
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -37,9 +37,9 @@ final class BalanceElementL11nMapper extends DataMapperFactory
|
|||
* @since 1.0.0
|
||||
*/
|
||||
public const COLUMNS = [
|
||||
'balance_balance_element_l11n_id' => ['name' => 'balance_balance_element_l11n_id', 'type' => 'int', 'internal' => 'id'],
|
||||
'balance_balance_element_l11n_title' => ['name' => 'balance_balance_element_l11n_title', 'type' => 'string', 'internal' => 'content', 'autocomplete' => true],
|
||||
'balance_balance_element_l11n_element' => ['name' => 'balance_balance_element_l11n_element', 'type' => 'int', 'internal' => 'ref'],
|
||||
'balance_balance_element_l11n_id' => ['name' => 'balance_balance_element_l11n_id', 'type' => 'int', 'internal' => 'id'],
|
||||
'balance_balance_element_l11n_title' => ['name' => 'balance_balance_element_l11n_title', 'type' => 'string', 'internal' => 'content', 'autocomplete' => true],
|
||||
'balance_balance_element_l11n_element' => ['name' => 'balance_balance_element_l11n_element', 'type' => 'int', 'internal' => 'ref'],
|
||||
'balance_balance_element_l11n_lang' => ['name' => 'balance_balance_element_l11n_lang', 'type' => 'string', 'internal' => 'language'],
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -37,11 +37,11 @@ final class BalanceElementMapper extends DataMapperFactory
|
|||
* @since 1.0.0
|
||||
*/
|
||||
public const COLUMNS = [
|
||||
'balance_balance_element_id' => ['name' => 'balance_balance_element_id', 'type' => 'int', 'internal' => 'id'],
|
||||
'balance_balance_element_code' => ['name' => 'balance_balance_element_code', 'type' => 'string', 'internal' => 'code', 'autocomplete' => true],
|
||||
'balance_balance_element_order' => ['name' => 'balance_balance_element_order', 'type' => 'int', 'internal' => 'order'],
|
||||
'balance_balance_element_parent' => ['name' => 'balance_balance_element_parent', 'type' => 'int', 'internal' => 'parent'],
|
||||
'balance_balance_element_balance' => ['name' => 'balance_balance_element_balance', 'type' => 'int', 'internal' => 'balance'],
|
||||
'balance_balance_element_id' => ['name' => 'balance_balance_element_id', 'type' => 'int', 'internal' => 'id'],
|
||||
'balance_balance_element_code' => ['name' => 'balance_balance_element_code', 'type' => 'string', 'internal' => 'code', 'autocomplete' => true],
|
||||
'balance_balance_element_order' => ['name' => 'balance_balance_element_order', 'type' => 'int', 'internal' => 'order'],
|
||||
'balance_balance_element_parent' => ['name' => 'balance_balance_element_parent', 'type' => 'int', 'internal' => 'parent'],
|
||||
'balance_balance_element_balance' => ['name' => 'balance_balance_element_balance', 'type' => 'int', 'internal' => 'balance'],
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
@ -57,7 +57,7 @@ final class BalanceElementMapper extends DataMapperFactory
|
|||
'self' => 'balance_balance_element_l11n_element',
|
||||
'column' => 'content',
|
||||
'external' => null,
|
||||
]
|
||||
],
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -37,9 +37,9 @@ final class BalanceMapper extends DataMapperFactory
|
|||
* @since 1.0.0
|
||||
*/
|
||||
public const COLUMNS = [
|
||||
'balance_balance_id' => ['name' => 'balance_balance_id', 'type' => 'int', 'internal' => 'id'],
|
||||
'balance_balance_code' => ['name' => 'balance_balance_code', 'type' => 'string', 'internal' => 'code', 'autocomplete' => true],
|
||||
'balance_balance_name' => ['name' => 'balance_balance_name', 'type' => 'string', 'internal' => 'name', 'autocomplete' => true],
|
||||
'balance_balance_id' => ['name' => 'balance_balance_id', 'type' => 'int', 'internal' => 'id'],
|
||||
'balance_balance_code' => ['name' => 'balance_balance_code', 'type' => 'string', 'internal' => 'code', 'autocomplete' => true],
|
||||
'balance_balance_name' => ['name' => 'balance_balance_name', 'type' => 'string', 'internal' => 'name', 'autocomplete' => true],
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Balance
|
||||
* @package Modules\IncomeStatement
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -12,14 +12,71 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
function render_elements(array $elements, ?int $parent = null) : string
|
||||
{
|
||||
$row = '';
|
||||
$fn = 'render_elements';
|
||||
|
||||
foreach ($elements as $element) {
|
||||
if ($element->parent !== $parent) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$row .= <<<ROW
|
||||
<div>
|
||||
<div style="display: flex; flex-direction: row; align-items: center; background: #ff000099;">
|
||||
<div style="flex: 0; width: 30px; min-width: 30px; padding: 1px;"><label for="iElement{$element->id}-expand" class="btn"><i class="g-icon">add_circle</i></label></div>
|
||||
<div style="flex: 0; width: 150px; min-width: 150px; box-sizing: border-box; padding-left: 0px;">{$element->getL11n()}</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
</div>
|
||||
|
||||
<input id="iElement{$element->id}-expand" type="checkbox" class="hidden">
|
||||
<div class="checked-visibility">
|
||||
{$fn($elements, $element->id)}
|
||||
</div>
|
||||
</div>
|
||||
ROW;
|
||||
}
|
||||
|
||||
return $row;
|
||||
}
|
||||
|
||||
echo $this->data['nav']->render();
|
||||
?>
|
||||
<div class="row" style="font-size: 0.8rem;">
|
||||
|
||||
<div class="row" style="font-size: 0.8rem; margin-top: 1rem;">
|
||||
<div class="col-xs-12">
|
||||
<div style="background: #ff00ff99;">
|
||||
<div style="display: flex; flex-direction: row; align-items: center;">
|
||||
<div style="flex: 1; text-align: center;"></div>
|
||||
<div style="box-sizing: border-box; width: 150px; text-align: center;">Category</div>
|
||||
<div style="flex: 0; width: 30px; min-width: 30px; text-align: center;"></div>
|
||||
<div style="flex: 0; width: 150px; min-width: 150px; box-sizing: border-box; text-align: center;">Category</div>
|
||||
<div style="flex: 1; text-align: center;">1</div>
|
||||
<div style="flex: 1; text-align: center;">2</div>
|
||||
<div style="flex: 1; text-align: center;">3</div>
|
||||
|
|
@ -53,49 +110,6 @@ echo $this->data['nav']->render();
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
foreach ($this->data['elements'] as $element) :
|
||||
if ($element->parent !== null) {
|
||||
continue;
|
||||
}
|
||||
?>
|
||||
<div class="row" style="font-size: 0.8rem;">
|
||||
<div class="col-xs-12">
|
||||
<div style="display: flex; flex-direction: row; align-items: center; background: #ff000099;">
|
||||
<div style="flex: 1; padding: 1px;"><label for="iSegment1-expand" class="btn"><i class="g-icon">add_circle</i></label></div>
|
||||
<div style="box-sizing: border-box; width: 120px; padding-left: 0px;"><?= $this->printHtml($element->getL11n()); ?></div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
<div style="flex: 1; padding: 1px;">+0.00%</div>
|
||||
</div>
|
||||
|
||||
<!-- Input here -->
|
||||
<!-- Child here -->
|
||||
</div>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
||||
<div class="col-xs-12"><?= \render_elements($this->data['elements'], null); ?></div>
|
||||
</div>
|
||||
|
|
@ -75,8 +75,8 @@ final class Autoloader
|
|||
*/
|
||||
public static function defaultAutoloader(string $class) : void
|
||||
{
|
||||
$class = \ltrim($class, '\\');
|
||||
$class = \strtr($class, '_\\', '//');
|
||||
$class = \ltrim($class, '\\');
|
||||
$class = \strtr($class, '_\\', '//');
|
||||
|
||||
if (\stripos($class, 'Web/Backend') !== false || \stripos($class, 'Web/Api') !== false) {
|
||||
$class = \is_dir(__DIR__ . '/Web') ? $class : \str_replace('Web/', 'MainRepository/Web/', $class);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,15 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Balance\tests
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
\ini_set('memory_limit', '2048M');
|
||||
|
|
@ -67,10 +78,10 @@ $GLOBALS['is_github'] = $IS_GITHUB;
|
|||
$tmp = FileLogger::getInstance(__DIR__ . '/../Logs');
|
||||
|
||||
$CONFIG = [
|
||||
'db' => [
|
||||
'db' => [
|
||||
'core' => [
|
||||
'masters' => [
|
||||
'admin' => [
|
||||
'admin' => [
|
||||
'db' => 'mysql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '3306', /* db host port */
|
||||
|
|
@ -80,7 +91,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'insert' => [
|
||||
'insert' => [
|
||||
'db' => 'mysql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '3306', /* db host port */
|
||||
|
|
@ -90,7 +101,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'select' => [
|
||||
'select' => [
|
||||
'db' => 'mysql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '3306', /* db host port */
|
||||
|
|
@ -100,7 +111,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'update' => [
|
||||
'update' => [
|
||||
'db' => 'mysql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '3306', /* db host port */
|
||||
|
|
@ -110,7 +121,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'delete' => [
|
||||
'delete' => [
|
||||
'db' => 'mysql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '3306', /* db host port */
|
||||
|
|
@ -120,7 +131,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'schema' => [
|
||||
'schema' => [
|
||||
'db' => 'mysql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '3306', /* db host port */
|
||||
|
|
@ -132,7 +143,7 @@ $CONFIG = [
|
|||
],
|
||||
],
|
||||
'postgresql' => [
|
||||
'admin' => [
|
||||
'admin' => [
|
||||
'db' => 'pgsql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '5432', /* db host port */
|
||||
|
|
@ -142,7 +153,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'insert' => [
|
||||
'insert' => [
|
||||
'db' => 'pgsql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '5432', /* db host port */
|
||||
|
|
@ -152,7 +163,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'select' => [
|
||||
'select' => [
|
||||
'db' => 'pgsql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '5432', /* db host port */
|
||||
|
|
@ -162,7 +173,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'update' => [
|
||||
'update' => [
|
||||
'db' => 'pgsql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '5432', /* db host port */
|
||||
|
|
@ -172,7 +183,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'delete' => [
|
||||
'delete' => [
|
||||
'db' => 'pgsql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '5432', /* db host port */
|
||||
|
|
@ -182,7 +193,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'schema' => [
|
||||
'schema' => [
|
||||
'db' => 'pgsql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '5432', /* db host port */
|
||||
|
|
@ -194,37 +205,37 @@ $CONFIG = [
|
|||
],
|
||||
],
|
||||
'sqlite' => [
|
||||
'admin' => [
|
||||
'admin' => [
|
||||
'db' => 'sqlite', /* db type */
|
||||
'database' => __DIR__ . '/../Karaka/phpOMS/Localization/Defaults/localization.sqlite', /* db name */
|
||||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'insert' => [
|
||||
'insert' => [
|
||||
'db' => 'sqlite', /* db type */
|
||||
'database' => __DIR__ . '/../Karaka/phpOMS/Localization/Defaults/localization.sqlite', /* db name */
|
||||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'select' => [
|
||||
'select' => [
|
||||
'db' => 'sqlite', /* db type */
|
||||
'database' => __DIR__ . '/../Karaka/phpOMS/Localization/Defaults/localization.sqlite', /* db name */
|
||||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'update' => [
|
||||
'update' => [
|
||||
'db' => 'sqlite', /* db type */
|
||||
'database' => __DIR__ . '/../Karaka/phpOMS/Localization/Defaults/localization.sqlite', /* db name */
|
||||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'delete' => [
|
||||
'delete' => [
|
||||
'db' => 'sqlite', /* db type */
|
||||
'database' => __DIR__ . '/../Karaka/phpOMS/Localization/Defaults/localization.sqlite', /* db name */
|
||||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'schema' => [
|
||||
'schema' => [
|
||||
'db' => 'sqlite', /* db type */
|
||||
'database' => __DIR__ . '/../Karaka/phpOMS/Localization/Defaults/localization.sqlite', /* db name */
|
||||
'weight' => 1000, /* db table prefix */
|
||||
|
|
@ -232,7 +243,7 @@ $CONFIG = [
|
|||
],
|
||||
],
|
||||
'mssql' => [
|
||||
'admin' => [
|
||||
'admin' => [
|
||||
'db' => 'mssql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '1433', /* db host port */
|
||||
|
|
@ -242,7 +253,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'insert' => [
|
||||
'insert' => [
|
||||
'db' => 'mssql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '1433', /* db host port */
|
||||
|
|
@ -252,7 +263,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'select' => [
|
||||
'select' => [
|
||||
'db' => 'mssql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '1433', /* db host port */
|
||||
|
|
@ -262,7 +273,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'update' => [
|
||||
'update' => [
|
||||
'db' => 'mssql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '1433', /* db host port */
|
||||
|
|
@ -272,7 +283,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'delete' => [
|
||||
'delete' => [
|
||||
'db' => 'mssql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '1433', /* db host port */
|
||||
|
|
@ -282,7 +293,7 @@ $CONFIG = [
|
|||
'weight' => 1000, /* db table prefix */
|
||||
'datetimeformat' => 'Y-m-d H:i:s',
|
||||
],
|
||||
'schema' => [
|
||||
'schema' => [
|
||||
'db' => 'mssql', /* db type */
|
||||
'host' => '127.0.0.1', /* db host address */
|
||||
'port' => '1433', /* db host port */
|
||||
|
|
@ -322,16 +333,16 @@ $CONFIG = [
|
|||
'password' => '123456',
|
||||
],
|
||||
],
|
||||
'log' => [
|
||||
'log' => [
|
||||
'file' => [
|
||||
'path' => __DIR__ . '/Logs',
|
||||
],
|
||||
],
|
||||
'page' => [
|
||||
'page' => [
|
||||
'root' => '/',
|
||||
'https' => false,
|
||||
],
|
||||
'app' => [
|
||||
'app' => [
|
||||
'path' => __DIR__,
|
||||
'default' => [
|
||||
'app' => 'Backend',
|
||||
|
|
@ -350,7 +361,7 @@ $CONFIG = [
|
|||
],
|
||||
],
|
||||
],
|
||||
'socket' => [
|
||||
'socket' => [
|
||||
'master' => [
|
||||
'host' => '127.0.0.1',
|
||||
'limit' => 300,
|
||||
|
|
@ -360,7 +371,7 @@ $CONFIG = [
|
|||
'language' => [
|
||||
'en',
|
||||
],
|
||||
'apis' => [
|
||||
'apis' => [
|
||||
],
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user