add feature word_typed_listener_allowed_only_for_empty_customerf

This commit is contained in:
Schneider Roland
2023-03-24 17:08:51 +01:00
parent beb3c3944e
commit 89fe6a37c1
4 changed files with 35 additions and 17 deletions

View File

@@ -552,4 +552,11 @@ class Helper {
return Helper::getArrayValue(\Yii::$app->params ,'door_pass_validity_interval_minutes','10');
}
public static function isWordTypedListenerAllowedOnlyForEmptyCustomer(){
$key = "word_typed_listener_allowed_only_for_empty_customer";
// return Helper::getArrayValue(\Yii::$app->params ,$key,'0') === '1';
return true;
}
}