firefly-iii/app/Transformers/CurrencyTransformer.php

57 lines
1.8 KiB
PHP
Raw Normal View History

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