mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
19 lines
329 B
PHP
19 lines
329 B
PHP
|
<?php
|
||
|
|
||
|
namespace LibreNMS\OS;
|
||
|
|
||
|
use LibreNMS\OS;
|
||
|
|
||
|
class BaicellsOd04 extends OS
|
||
|
{
|
||
|
/**
|
||
|
* convert hh:mm:ss to minutes (for yaml user_func)
|
||
|
*/
|
||
|
public static function hhmmss_to_minutes($duration)
|
||
|
{
|
||
|
[$h, $m, $s] = explode(':', $duration);
|
||
|
|
||
|
return (int) $h * 60 + (int) $m + (int) $s / 60;
|
||
|
}
|
||
|
}
|