mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Transformers;
|
|
|
|
use App\Helpers\Helper;
|
|
use App\Models\Statuslabel;
|
|
use Gate;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
class StatuslabelsTransformer
|
|
{
|
|
public function transformStatuslabels(Collection $statuslabels, $total)
|
|
{
|
|
$array = [];
|
|
foreach ($statuslabels as $statuslabel) {
|
|
$array[] = self::transformStatuslabel($statuslabel);
|
|
}
|
|
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
}
|
|
|
|
public function transformStatuslabel(Statuslabel $statuslabel)
|
|
{
|
|
$array = [
|
|
'id' => (int) $statuslabel->id,
|
|
'name' => e($statuslabel->name),
|
|
'type' => $statuslabel->getStatuslabelType(),
|
|
'color' => ($statuslabel->color) ? e($statuslabel->color) : null,
|
|
'show_in_nav' => ($statuslabel->show_in_nav == '1') ? true : false,
|
|
'default_label' => ($statuslabel->default_label == '1') ? true : false,
|
|
'assets_count' => (int) $statuslabel->assets_count,
|
|
'notes' => e($statuslabel->notes),
|
|
'created_at' => Helper::getFormattedDateObject($statuslabel->created_at, 'datetime'),
|
|
'updated_at' => Helper::getFormattedDateObject($statuslabel->updated_at, 'datetime'),
|
|
];
|
|
|
|
$permissions_array['available_actions'] = [
|
|
'update' => Gate::allows('update', Statuslabel::class) ? true : false,
|
|
'delete' => (Gate::allows('delete', Statuslabel::class) && ($statuslabel->assets_count == 0)) ? true : false,
|
|
];
|
|
$array += $permissions_array;
|
|
|
|
return $array;
|
|
}
|
|
}
|