10-29-2021, 07:14 AM
Hello,
It is not possible to to it from web admin interface.
You can change the list by editing this file :
You can put comment // before durations you do not want or add some in the $durations array :
It is not possible to to it from web admin interface.
You can change the list by editing this file :
Code:
/opt/keexybox/keexyapp/src/Controller/Component/ConnectionDurationComponent.php
You can put comment // before durations you do not want or add some in the $durations array :
PHP Code:
class ConnectionDurationComponent extends Component
{
public function GetDurationList()
{
$durations = [
'15' => __('15 minutes'),
'30' => __('30 minutes'),
'60' => __('1 hour'),
'120' => __('2 hours'),
'240' => __('4 hours'),
'480' => __('8 hours'),
'720' => __('12 hours'),
'1440' => __('1 day'),
'10080' => __('1 week'),
'20160' => __('2 weeks'),
'44640' => __('1 month'),
];
return $durations;
}
}