snipe-it/app/Presenters/ManufacturerPresenter.php
Daniel Meltzer 02c1a45025 View presenters (#3099)
* 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..

* Move conditionals out of the datatable method and into dedicated url methods.
2016-12-23 19:23:07 -08:00

54 lines
1.3 KiB
PHP

<?php
namespace App\Presenters;
use App\Helpers\Helper;
/**
* Class ManufacturerPresenter
* @package App\Presenters
*/
class ManufacturerPresenter extends Presenter
{
/**
* JSON representation of this manufacturer for data table.
* @return array
*/
public function forDataTable()
{
$actions = '<nobr>';
$actions .= Helper::generateDatatableButton('edit', route('manufacturers.edit', $this->id));
$actions .= Helper::generateDatatableButton(
'delete',
route('manufacturers.destroy', $this->id),
true, /*enabled*/
trans('admin/manufacturers/message.delete.confirm'),
$this->name
);
$actions .= '</nobr>';
$results = [
'accessories' => $this->accessories()->count(),
'actions' => $actions,
'assets' => $this->assets()->count(),
'consumables' => $this->consumables()->count(),
'id' => $this->id,
'licenses' => $this->licenses()->count(),
'name' => $this->nameUrl(),
];
return $results;
}
/**
* Link to this manufacturers name
* @return string
*/
public function nameUrl()
{
return (string) link_to_route('manufacturers.show', $this->name, $this->id);
}
}