#3417 igamkoop.ocify.co requests

This commit is contained in:
Muammer Top 2021-02-23 18:30:20 +03:00
parent 8eab51e20e
commit ac97cd791a
3 changed files with 44 additions and 1 deletions

View File

@ -35,6 +35,8 @@ return [
'get_categories', 'get_categories',
'listing_page_image', 'listing_page_image',
'show_ads_count', 'show_ads_count',
'ads_id_date_hidden',
'hide_seller_info',
], ],
], ],
'create_ad' => [ 'create_ad' => [
@ -79,7 +81,8 @@ return [
'filter' => [ 'filter' => [
'title' => 'visiosoft.module.advs::section.filter', 'title' => 'visiosoft.module.advs::section.filter',
'fields' => [ 'fields' => [
'hide_price_filter', 'hide_date_filter', 'hide_photo_filter', 'hide_map_filter', 'user_filter_limit' 'hide_filter_section', 'hide_price_filter', 'hide_date_filter', 'hide_photo_filter', 'hide_map_filter',
'hide_listing_header', 'user_filter_limit',
], ],
], ],
'translations' => [ 'translations' => [

View File

@ -383,5 +383,29 @@ return [
], ],
'favicon' => [ 'favicon' => [
'type' => 'anomaly.field_type.file', 'type' => 'anomaly.field_type.file',
],
'ads_id_date_hidden' => [
'type' => 'anomaly.field_type.boolean',
'config' => [
'default_value' => false,
]
],
'hide_listing_header' => [
'type' => 'anomaly.field_type.boolean',
'config' => [
'default_value' => false,
]
],
'hide_filter_section' => [
'type' => 'anomaly.field_type.boolean',
'config' => [
'default_value' => false,
]
],
'hide_seller_info' => [
'type' => 'anomaly.field_type.boolean',
'config' => [
'default_value' => false,
]
] ]
]; ];

View File

@ -203,6 +203,22 @@ return [
'name' => 'Show Ads Count', 'name' => 'Show Ads Count',
'instructions' => 'Show ads count on the left categories list', 'instructions' => 'Show ads count on the left categories list',
], ],
'ads_id_date_hidden' => [
'name' => 'Hide ID and Created Date',
'instructions' => 'Hide ID and created date in ads detail page',
],
'hide_listing_header' => [
'name' => 'Hide Listing Header',
'instructions' => 'Hiding to ordering and view types',
],
'hide_filter_section' => [
'name' => 'Hide Filter Section',
'instructions' => 'Hiding to left filter area in listing page',
],
'hide_seller_info' => [
'name' => 'Hide Seller Information',
'instructions' => 'Hiding to seller infos in ads detail page',
],
'show_post_ad_agreement' => [ 'show_post_ad_agreement' => [
'name' => 'Show Post Ad Agreement', 'name' => 'Show Post Ad Agreement',
'instructions' => 'Turn this on if you want to display a privacy policy agreement on the ad creation page', 'instructions' => 'Turn this on if you want to display a privacy policy agreement on the ad creation page',