mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
62 lines
1.5 KiB
PHP
62 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Transformers;
|
|
|
|
use App\Models\Document;
|
|
use App\Models\GroupSetting;
|
|
use App\Transformers\DocumentTransformer;
|
|
use App\Utils\Traits\MakesHash;
|
|
use stdClass;
|
|
|
|
/**
|
|
* class ClientTransformer.
|
|
*/
|
|
class GroupSettingTransformer extends EntityTransformer
|
|
{
|
|
use MakesHash;
|
|
|
|
protected $defaultIncludes = [
|
|
'documents'
|
|
];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $availableIncludes = [
|
|
];
|
|
|
|
/**
|
|
* @param GroupSetting $group_setting
|
|
* @return array
|
|
*/
|
|
public function transform(GroupSetting $group_setting)
|
|
{
|
|
return [
|
|
'id' => $this->encodePrimaryKey($group_setting->id),
|
|
'name' => (string) $group_setting->name ?: '',
|
|
'settings' => $group_setting->settings ?: new stdClass,
|
|
'created_at' => (int) $group_setting->created_at,
|
|
'updated_at' => (int) $group_setting->updated_at,
|
|
'archived_at' => (int) $group_setting->deleted_at,
|
|
'is_deleted' => (bool) $group_setting->is_deleted,
|
|
];
|
|
}
|
|
|
|
public function includeDocuments(GroupSetting $group_setting)
|
|
{
|
|
$transformer = new DocumentTransformer($this->serializer);
|
|
|
|
return $this->includeCollection($group_setting->documents, $transformer, Document::class);
|
|
}
|
|
|
|
}
|