mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
61543f3a04
* Add presenters for models. Move bootstrap table JSON generation to these presenters, which cleans up controllers a lot. Move view specific modifications from the models to the presenters as well. * Fix some issues found by travis and codacy * Fix a few more issues found while testing. * Attempt another acceptance test fix * Try something else * Maybe..
59 lines
1.7 KiB
PHP
59 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Presenters;
|
|
|
|
|
|
use App\Helpers\Helper;
|
|
|
|
/**
|
|
* Class LocationPresenter
|
|
* @package App\Presenters
|
|
*/
|
|
class LocationPresenter extends Presenter
|
|
{
|
|
/**
|
|
* JSON representation of this location for data table.
|
|
* @return array
|
|
*/
|
|
public function forDataTable()
|
|
{
|
|
$actions = '<nobr>';
|
|
$actions .= Helper::generateDatatableButton('edit', route('locations.edit', $this->id));
|
|
$actions .= Helper::generateDatatableButton(
|
|
'delete',
|
|
route('locations.destroy', $this->id),
|
|
true, /*enabled*/
|
|
trans('admin/locations/message.delete.confirm'),
|
|
$this->name
|
|
);
|
|
$actions .= '</nobr>';
|
|
|
|
$results = [
|
|
'id' => $this->id,
|
|
'name' => $this->nameUrl(),
|
|
'parent' => ($this->model->parent) ? $this->model->parent->present()->nameUrl() : '',
|
|
// 'assets' => ($this->assets->count() + $this->assignedassets->count()),
|
|
'assets_default' => $this->model->assignedassets()->count(),
|
|
'assets_checkedout' => $this->model->assets()->count(),
|
|
'address' => $this->address,
|
|
'city' => $this->city,
|
|
'state' => $this->state,
|
|
'zip' => $this->zip,
|
|
'country' => $this->country,
|
|
'currency' => $this->currency,
|
|
'actions' => $actions
|
|
];
|
|
|
|
return $results;
|
|
}
|
|
|
|
/**
|
|
* Link to this locations name
|
|
* @return string
|
|
*/
|
|
public function nameUrl()
|
|
{
|
|
return (string)link_to_route('locations.show', $this->name, $this->id);
|
|
}
|
|
}
|