Move search operators to dedicated file and add lots of new ones.

This commit is contained in:
James Cole
2022-03-20 07:42:39 +01:00
parent c000e090fe
commit ba10aa5ca5
12 changed files with 355 additions and 218 deletions

View File

@@ -116,7 +116,7 @@ trait ModelInformation
protected function getTriggersForBill(Bill $bill): array // get info and augument
{
// See reference nr. 39
$operators = config('firefly.search.operators');
$operators = config('search.operators');
$triggers = [];
foreach ($operators as $key => $operator) {
if ('user_action' !== $key && false === $operator['alias']) {
@@ -168,7 +168,7 @@ trait ModelInformation
private function getTriggersForJournal(TransactionJournal $journal): array
{
// See reference nr. 40
$operators = config('firefly.search.operators');
$operators = config('search.operators');
$triggers = [];
foreach ($operators as $key => $operator) {
if ('user_action' !== $key && false === $operator['alias']) {