mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Added comments, removed gthe AgeFormat() helper method
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
059ead5af5
commit
f4bd307421
|
@ -1130,32 +1130,20 @@ class Helper
|
||||||
|
|
||||||
return $bytes;
|
return $bytes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is weird but used by the side nav to determine which URL to point the user to
|
||||||
|
*
|
||||||
|
* @author A. Gianotto <snipe@snipe.net>
|
||||||
|
* @since 5.0
|
||||||
|
*
|
||||||
|
* @return string[]
|
||||||
|
*/
|
||||||
public static function SettingUrls(){
|
public static function SettingUrls(){
|
||||||
$settings=['#','fields.index', 'statuslabels.index', 'models.index', 'categories.index', 'manufacturers.index', 'suppliers.index', 'departments.index', 'locations.index', 'companies.index', 'depreciations.index'];
|
$settings=['#','fields.index', 'statuslabels.index', 'models.index', 'categories.index', 'manufacturers.index', 'suppliers.index', 'departments.index', 'locations.index', 'companies.index', 'depreciations.index'];
|
||||||
|
|
||||||
return $settings;
|
return $settings;
|
||||||
}
|
}
|
||||||
public static function AgeFormat($date) {
|
|
||||||
$year = Carbon::parse($date)
|
|
||||||
->diff(now())->y;
|
|
||||||
$month = Carbon::parse($date)
|
|
||||||
->diff(now())->m;
|
|
||||||
$days = Carbon::parse($date)
|
|
||||||
->diff(now())->d;
|
|
||||||
$age='';
|
|
||||||
if ($year) {
|
|
||||||
$age .= $year.'y ';
|
|
||||||
}
|
|
||||||
if ($month) {
|
|
||||||
$age .= $month.'m ';
|
|
||||||
}
|
|
||||||
if ($days) {
|
|
||||||
$age .= $days.'d';
|
|
||||||
}
|
|
||||||
|
|
||||||
return $age;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue