2019-08-10 15:09:44 +02:00
|
|
|
<?php
|
2024-11-25 04:18:55 +01:00
|
|
|
|
2019-10-02 06:37:26 +02:00
|
|
|
/**
|
|
|
|
* RuleForm.php
|
2020-02-16 13:56:52 +01:00
|
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
2019-10-02 06:37:26 +02:00
|
|
|
*
|
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-08-17 12:09:03 +02:00
|
|
|
declare(strict_types=1);
|
2019-08-10 15:09:44 +02:00
|
|
|
|
|
|
|
namespace FireflyIII\Support\Form;
|
2021-09-18 10:26:12 +02:00
|
|
|
|
2019-08-10 15:09:44 +02:00
|
|
|
use FireflyIII\Models\RuleGroup;
|
|
|
|
use FireflyIII\Repositories\RuleGroup\RuleGroupRepositoryInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class RuleForm
|
2022-10-30 11:43:17 +01:00
|
|
|
* TODO cleanup and describe
|
2019-08-10 15:09:44 +02:00
|
|
|
*/
|
|
|
|
class RuleForm
|
|
|
|
{
|
|
|
|
use FormSupport;
|
2021-03-21 09:15:40 +01:00
|
|
|
|
2024-03-18 20:25:30 +01:00
|
|
|
public function ruleGroupList(string $name, mixed $value = null, ?array $options = null): string
|
2019-08-10 15:09:44 +02:00
|
|
|
{
|
|
|
|
/** @var RuleGroupRepositoryInterface $groupRepos */
|
|
|
|
$groupRepos = app(RuleGroupRepositoryInterface::class);
|
|
|
|
|
|
|
|
// get all currencies:
|
2024-12-22 20:37:54 +01:00
|
|
|
$list = $groupRepos->get();
|
|
|
|
$array = [];
|
2023-12-20 19:35:52 +01:00
|
|
|
|
2019-08-10 15:09:44 +02:00
|
|
|
/** @var RuleGroup $group */
|
|
|
|
foreach ($list as $group) {
|
|
|
|
$array[$group->id] = $group->title;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->select($name, $array, $value, $options);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-12-20 19:35:52 +01:00
|
|
|
* @param null $value
|
2019-08-10 15:09:44 +02:00
|
|
|
*/
|
2024-03-18 20:25:30 +01:00
|
|
|
public function ruleGroupListWithEmpty(string $name, $value = null, ?array $options = null): string
|
2019-08-10 15:09:44 +02:00
|
|
|
{
|
2024-12-22 20:37:54 +01:00
|
|
|
$options ??= [];
|
2019-08-10 15:09:44 +02:00
|
|
|
$options['class'] = 'form-control';
|
2023-12-20 19:35:52 +01:00
|
|
|
|
2019-08-10 15:09:44 +02:00
|
|
|
/** @var RuleGroupRepositoryInterface $groupRepos */
|
2024-12-22 20:37:54 +01:00
|
|
|
$groupRepos = app(RuleGroupRepositoryInterface::class);
|
2019-08-10 15:09:44 +02:00
|
|
|
|
|
|
|
// get all currencies:
|
2024-12-22 20:37:54 +01:00
|
|
|
$list = $groupRepos->get();
|
|
|
|
$array = [
|
2024-12-22 08:43:12 +01:00
|
|
|
0 => (string) trans('firefly.none_in_select_list'),
|
2019-08-10 15:09:44 +02:00
|
|
|
];
|
2023-12-20 19:35:52 +01:00
|
|
|
|
2019-08-10 15:09:44 +02:00
|
|
|
/** @var RuleGroup $group */
|
|
|
|
foreach ($list as $group) {
|
2024-12-22 08:43:12 +01:00
|
|
|
if (array_key_exists('hidden', $options) && (int) $options['hidden'] !== $group->id) {
|
2019-08-10 15:09:44 +02:00
|
|
|
$array[$group->id] = $group->title;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-29 06:52:21 +02:00
|
|
|
return $this->select($name, $array, $value, $options);
|
2019-08-10 15:09:44 +02:00
|
|
|
}
|
2019-08-17 12:09:03 +02:00
|
|
|
}
|