mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 21:24:13 -08:00
Use updated icons for activity report
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
3d9a9c7fe8
commit
58679a13eb
|
@ -38,22 +38,63 @@ class ActionlogPresenter extends Presenter
|
||||||
|
|
||||||
public function icon()
|
public function icon()
|
||||||
{
|
{
|
||||||
$itemicon = 'fas fa-paperclip';
|
|
||||||
|
// User related icons
|
||||||
|
if ($this->itemType() == 'user') {
|
||||||
|
|
||||||
if ($this->itemType() == 'asset') {
|
if ($this->actionType()=='create new') {
|
||||||
return 'fas fa-barcode';
|
return 'fa-solid fa-user-plus';
|
||||||
} elseif ($this->itemType() == 'accessory') {
|
}
|
||||||
return 'far fa-keyboard';
|
|
||||||
} elseif ($this->itemType() == 'consumable') {
|
if ($this->actionType()=='merged') {
|
||||||
return 'fas fa-tint';
|
return 'fa-solid fa-people-arrows';
|
||||||
} elseif ($this->itemType() == 'license') {
|
}
|
||||||
return 'far fa-save';
|
|
||||||
} elseif ($this->itemType() == 'component') {
|
if ($this->actionType()=='delete') {
|
||||||
return 'far fa-hdd';
|
return 'fa-solid fa-user-minus';
|
||||||
} elseif ($this->itemType() == 'user') {
|
}
|
||||||
return 'fa-solid fa-people-arrows';
|
|
||||||
|
if ($this->actionType()=='delete') {
|
||||||
|
return 'fa-solid fa-user-minus';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->actionType()=='update') {
|
||||||
|
return 'fa-solid fa-user-pen';
|
||||||
|
}
|
||||||
|
return 'fa-solid fa-user';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Everything else
|
||||||
|
if ($this->actionType()=='create new') {
|
||||||
|
return 'fa-solid fa-plus';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->actionType()=='delete') {
|
||||||
|
return 'fa-solid fa-user-xmark';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->actionType()=='update') {
|
||||||
|
return 'fa-solid fa-pen';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->actionType()=='restore') {
|
||||||
|
return 'fa-solid fa-trash-arrow-up';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->actionType()=='upload') {
|
||||||
|
return 'fas fa-paperclip';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->actionType()=='checkout') {
|
||||||
|
return 'fa-solid fa-rotate-left';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->actionType()=='checkin from') {
|
||||||
|
return 'fa-solid fa-rotate-right';
|
||||||
|
}
|
||||||
|
|
||||||
|
return 'fa-solid fa-rotate-right';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function actionType()
|
public function actionType()
|
||||||
|
|
Loading…
Reference in a new issue