mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-27 14:39:49 -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
95 lines
2.8 KiB
PHP
95 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Presenters;
|
|
|
|
/**
|
|
* Class CompanyPresenter
|
|
*/
|
|
class ActionlogPresenter extends Presenter
|
|
{
|
|
public function admin()
|
|
{
|
|
if ($user = $this->model->user) {
|
|
if (empty($user->deleted_at)) {
|
|
return $user->present()->nameUrl();
|
|
}
|
|
// The user was deleted
|
|
return '<del>'.$user->getFullNameAttribute().'</del> (deleted)';
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
public function item()
|
|
{
|
|
if ($this->action_type == 'uploaded') {
|
|
return (string) link_to_route('show/userfile', $this->model->filename, [$this->model->item->id, $this->model->id]);
|
|
}
|
|
if ($item = $this->model->item) {
|
|
if (empty($item->deleted_at)) {
|
|
return $this->model->item->present()->nameUrl();
|
|
}
|
|
// The item was deleted
|
|
return '<del>'.$item->name.'</del> (deleted)';
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
public function icon()
|
|
{
|
|
$itemicon = 'fa fa-paperclip';
|
|
|
|
if ($this->itemType() == 'asset') {
|
|
$itemicon = 'fa fa-barcode';
|
|
} elseif ($this->itemType() == 'accessory') {
|
|
$itemicon = 'fa fa-keyboard-o';
|
|
} elseif ($this->itemType() == 'consumable') {
|
|
$itemicon = 'fa fa-tint';
|
|
} elseif ($this->itemType() == 'license') {
|
|
$itemicon = 'fa fa-floppy-o';
|
|
} elseif ($this->itemType() == 'component') {
|
|
$itemicon = 'fa fa-hdd-o';
|
|
}
|
|
|
|
return $itemicon;
|
|
}
|
|
|
|
public function actionType()
|
|
{
|
|
return mb_strtolower(trans('general.'.str_replace(' ', '_', $this->action_type)));
|
|
}
|
|
|
|
public function target()
|
|
{
|
|
$target = null;
|
|
// Target is messy.
|
|
// On an upload, the target is the item we are uploading to, stored as the "item" in the log.
|
|
if ($this->action_type == 'uploaded') {
|
|
$target = $this->model->item;
|
|
} elseif (($this->action_type == 'accepted') || ($this->action_type == 'declined')) {
|
|
// If we are logging an accept/reject, the target is not stored directly,
|
|
// so we access it through who the item is assigned to.
|
|
// FIXME: On a reject it's not assigned to anyone.
|
|
$target = $this->model->item->assignedTo;
|
|
} elseif ($this->action_type == 'requested') {
|
|
if ($this->model->user) {
|
|
$target = $this->model->user;
|
|
}
|
|
} elseif ($this->model->target) {
|
|
// Otherwise, we'll just take the target of the log.
|
|
$target = $this->model->target;
|
|
}
|
|
|
|
if ($target) {
|
|
if (empty($target->deleted_at)) {
|
|
return $target->present()->nameUrl();
|
|
}
|
|
|
|
return '<del>'.$target->present()->name().'</del>';
|
|
}
|
|
|
|
return '';
|
|
}
|
|
}
|