openclassify/addons/default/visiosoft/profile-module/resources/config/settings/settings.php
2020-11-06 18:55:18 +03:00

54 lines
1.4 KiB
PHP

<?php
return [
'upload_avatar' => [
'type' => 'anomaly.field_type.boolean',
'config' => [
'default_value' => 1
],
],
'show_my_ads' => [
'type' => 'anomaly.field_type.boolean',
'config' => [
'default_value' => 1
],
],
'show_tax_office' => [
'type' => 'anomaly.field_type.boolean',
'config' => [
'default_value' => true,
],
],
'google_captcha_site_key' => [
'type' => 'anomaly.field_type.text',
],
'google_captcha_secret_key' => [
'type' => 'anomaly.field_type.text',
],
"score_threshold" => [
"type" => "anomaly.field_type.decimal",
"config" => [
"default_value" => 0.5,
"decimals" => 1,
"min" => 0.0,
"max" => 1.0,
]
],
'show_checkbox_terms_on_register' => [
'type' => 'anomaly.field_type.boolean',
'config' => [
'default_value' => false,
'mode' => 'checkbox'
]
],
'show_education_profession' => [
'type' => 'anomaly.field_type.boolean',
'config' => [
'default_value' => true,
'mode' => 'checkbox'
]
],
"education" => "anomaly.field_type.tags",
"state_of_education" => "anomaly.field_type.tags",
"profession" => "anomaly.field_type.tags",
];