mirror of
https://github.com/openclassify/openclassify.git
synced 2026-03-09 17:55:27 -05:00
34 lines
851 B
PHP
34 lines
851 B
PHP
<?php
|
|
|
|
|
|
use Anomaly\Streams\Platform\Model\Location\LocationCitiesEntryModel;
|
|
use Anomaly\Streams\Platform\Model\Location\LocationDistrictsEntryModel;
|
|
use Visiosoft\LocationModule\Country\CountryModel;
|
|
|
|
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,
|
|
],
|
|
],
|
|
];
|