mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
Few more icon updates
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
8aba37522d
commit
ad6f073c82
|
@ -41,18 +41,17 @@ class ActionlogPresenter extends Presenter
|
||||||
$itemicon = 'fa fa-paperclip';
|
$itemicon = 'fa fa-paperclip';
|
||||||
|
|
||||||
if ($this->itemType() == 'asset') {
|
if ($this->itemType() == 'asset') {
|
||||||
$itemicon = 'fa fa-barcode';
|
return 'fa fa-barcode';
|
||||||
} elseif ($this->itemType() == 'accessory') {
|
} elseif ($this->itemType() == 'accessory') {
|
||||||
$itemicon = 'far fa-keyboard';
|
return 'far fa-keyboard';
|
||||||
} elseif ($this->itemType() == 'consumable') {
|
} elseif ($this->itemType() == 'consumable') {
|
||||||
$itemicon = 'fa fa-tint';
|
return 'fa fa-tint';
|
||||||
} elseif ($this->itemType() == 'license') {
|
} elseif ($this->itemType() == 'license') {
|
||||||
$itemicon = 'far fa-save';
|
return 'far fa-save';
|
||||||
} elseif ($this->itemType() == 'component') {
|
} elseif ($this->itemType() == 'component') {
|
||||||
$itemicon = 'far fa-hdd';
|
return 'far fa-hdd';
|
||||||
}
|
}
|
||||||
|
|
||||||
return $itemicon;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function actionType()
|
public function actionType()
|
||||||
|
|
|
@ -205,7 +205,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((row.available_actions) && (row.available_actions.clone === true)) {
|
if ((row.available_actions) && (row.available_actions.clone === true)) {
|
||||||
actions += '<a href="{{ url('/') }}/' + dest + '/' + row.id + '/clone" class="btn btn-sm btn-info" data-tooltip="true" title="Clone Item"><i class="fa fa-copy" aria-hidden="true"></i><span class="sr-only">Clone</span></a> ';
|
actions += '<a href="{{ url('/') }}/' + dest + '/' + row.id + '/clone" class="btn btn-sm btn-info" data-tooltip="true" title="Clone Item"><i class="far fa-clone" aria-hidden="true"></i><span class="sr-only">Clone</span></a> ';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((row.available_actions) && (row.available_actions.update === true)) {
|
if ((row.available_actions) && (row.available_actions.update === true)) {
|
||||||
|
@ -224,7 +224,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((row.available_actions) && (row.available_actions.restore === true)) {
|
if ((row.available_actions) && (row.available_actions.restore === true)) {
|
||||||
actions += '<a href="{{ url('/') }}/' + dest + '/' + row.id + '/restore" class="btn btn-sm btn-warning" data-toggle="tooltip" title="Restore"><i class="fa fa-retweet"></i></a> ';
|
actions += '<a href="{{ url('/') }}/' + dest + '/' + row.id + '/restore" class="btn btn-sm btn-warning" data-toggle="tooltip" title="Restore"><i class="far fa-clone"></i></a> ';
|
||||||
}
|
}
|
||||||
|
|
||||||
actions +='</nobr>';
|
actions +='</nobr>';
|
||||||
|
@ -244,28 +244,28 @@
|
||||||
|
|
||||||
if (value.type == 'asset') {
|
if (value.type == 'asset') {
|
||||||
item_destination = 'hardware';
|
item_destination = 'hardware';
|
||||||
item_icon = 'fa-barcode';
|
item_icon = 'fa fa-barcode';
|
||||||
} else if (value.type == 'accessory') {
|
} else if (value.type == 'accessory') {
|
||||||
item_destination = 'accessories';
|
item_destination = 'accessories';
|
||||||
item_icon = 'fa-keyboard-o';
|
item_icon = 'far fa-keyboard';
|
||||||
} else if (value.type == 'component') {
|
} else if (value.type == 'component') {
|
||||||
item_destination = 'components';
|
item_destination = 'components';
|
||||||
item_icon = 'fa-hdd-o';
|
item_icon = 'far fa-hdd';
|
||||||
} else if (value.type == 'consumable') {
|
} else if (value.type == 'consumable') {
|
||||||
item_destination = 'consumables';
|
item_destination = 'consumables';
|
||||||
item_icon = 'fa-tint';
|
item_icon = 'fa fa-tint';
|
||||||
} else if (value.type == 'license') {
|
} else if (value.type == 'license') {
|
||||||
item_destination = 'licenses';
|
item_destination = 'licenses';
|
||||||
item_icon = 'fa-floppy-o';
|
item_icon = 'far fa-save';
|
||||||
} else if (value.type == 'user') {
|
} else if (value.type == 'user') {
|
||||||
item_destination = 'users';
|
item_destination = 'users';
|
||||||
item_icon = 'fa-user';
|
item_icon = 'fa fa-user';
|
||||||
} else if (value.type == 'location') {
|
} else if (value.type == 'location') {
|
||||||
item_destination = 'locations'
|
item_destination = 'locations'
|
||||||
item_icon = 'fa-map-marker';
|
item_icon = 'far fa-hdd';
|
||||||
}
|
}
|
||||||
|
|
||||||
return '<nobr><a href="{{ url('/') }}/' + item_destination +'/' + value.id + '" data-tooltip="true" title="' + value.type + '"><i class="fa ' + item_icon + ' text-{{ $snipeSettings->skin!='' ? $snipeSettings->skin : 'blue' }} "></i> ' + value.name + '</a></nobr>';
|
return '<nobr><a href="{{ url('/') }}/' + item_destination +'/' + value.id + '" data-tooltip="true" title="' + value.type + '"><i class="' + item_icon + ' text-{{ $snipeSettings->skin!='' ? $snipeSettings->skin : 'blue' }} "></i> ' + value.name + '</a></nobr>';
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
return '';
|
return '';
|
||||||
|
|
Loading…
Reference in a new issue