mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
29 lines
655 B
PHP
29 lines
655 B
PHP
<?php
|
|
|
|
return [
|
|
'home_page_location' => [
|
|
'type' => 'anomaly.field_type.boolean',
|
|
'config' => [
|
|
'default_value' => true,
|
|
],
|
|
],
|
|
'list_page_location' => [
|
|
'type' => 'anomaly.field_type.boolean',
|
|
'config' => [
|
|
'default_value' => true,
|
|
],
|
|
],
|
|
'detail_page_location' => [
|
|
'type' => 'anomaly.field_type.boolean',
|
|
'config' => [
|
|
'default_value' => true,
|
|
],
|
|
],
|
|
'show_search_location_btn' => [
|
|
'type' => 'anomaly.field_type.boolean',
|
|
'config' => [
|
|
'default_value' => true,
|
|
],
|
|
],
|
|
];
|