1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Transformers/DesignTransformer.php

62 lines
1.6 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Transformers;
use App\Models\Design;
use App\Utils\Traits\MakesHash;
2020-02-27 00:32:44 +01:00
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* Class DesignTransformer.
*/
class DesignTransformer extends EntityTransformer
{
use MakesHash;
2020-02-27 00:32:44 +01:00
use SoftDeletes;
/**
* @var array
*/
2023-08-21 03:29:31 +02:00
protected array $defaultIncludes = [
];
/**
* @var array
*/
2023-08-21 03:29:31 +02:00
protected array $availableIncludes = [
];
/**
* @param Design $design
*
* @return array
*/
public function transform(Design $design)
{
return [
'id' => (string) $this->encodePrimaryKey($design->id),
'name' => (string) $design->name,
'is_custom' => (bool) $design->is_custom,
'is_active' => (bool) $design->is_active,
2023-09-21 09:15:51 +02:00
'is_template' => (bool) $design->is_template,
'design' => $design->design,
'updated_at' => (int) $design->updated_at,
'archived_at' => (int) $design->deleted_at,
'created_at' => (int) $design->created_at,
'is_deleted' => (bool) $design->is_deleted,
2021-07-18 12:10:55 +02:00
'is_free' => ($design->id <= 4) ? true : false,
2023-09-22 06:46:14 +02:00
'is_template' => (bool) $design->is_template,
'entities' => (string) $design->entities ?: '',
];
}
}