Files
firefly-iii/app/Transformers/CurrencyTransformer.php

59 lines
1.9 KiB
PHP
Raw Normal View History

2018-04-13 17:28:11 +02:00
<?php
2018-04-13 17:28:11 +02:00
/**
* CurrencyTransformer.php
2020-02-16 13:57:18 +01:00
* Copyright (c) 2019 james@firefly-iii.org
2018-04-13 17:28:11 +02:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-04-13 17:28:11 +02:00
*
* 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.
2018-04-13 17:28:11 +02:00
*
* This program is distributed in the hope that it will be useful,
2018-04-13 17:28:11 +02:00
* 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.
2018-04-13 17:28:11 +02:00
*
* 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/>.
2018-04-13 17:28:11 +02:00
*/
declare(strict_types=1);
namespace FireflyIII\Transformers;
use FireflyIII\Models\TransactionCurrency;
/**
* Class CurrencyTransformer
*/
class CurrencyTransformer extends AbstractTransformer
2018-04-13 17:28:11 +02:00
{
/**
* Transform the currency.
*/
public function transform(TransactionCurrency $currency): array
{
2020-10-23 19:11:25 +02:00
return [
2023-11-05 19:41:37 +01:00
'id' => $currency->id,
2018-04-13 17:28:11 +02:00
'created_at' => $currency->created_at->toAtomString(),
2018-12-12 20:30:25 +01:00
'updated_at' => $currency->updated_at->toAtomString(),
2025-01-19 11:40:07 +01:00
'native' => $currency->userGroupNative,
2025-01-19 11:47:41 +01:00
'default' => $currency->userGroupNative,
2023-12-16 16:06:23 +01:00
'enabled' => $currency->userGroupEnabled,
2018-04-13 17:28:11 +02:00
'name' => $currency->name,
'code' => $currency->code,
'symbol' => $currency->symbol,
2023-11-26 12:10:42 +01:00
'decimal_places' => $currency->decimal_places,
2018-04-13 17:28:11 +02:00
'links' => [
[
'rel' => 'self',
2023-12-20 19:35:52 +01:00
'uri' => '/currencies/'.$currency->id,
2018-04-13 17:28:11 +02:00
],
],
];
}
}