mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
28 lines
688 B
PHP
28 lines
688 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,
|
|
],
|
|
],
|
|
];
|