Merge pull request #965 from openclassify/muammertop

#3417 igamkoop.ocify.co requests
This commit is contained in:
Dia Shalabi 2021-02-24 10:46:50 +03:00 committed by GitHub
commit 2b36deed68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 51 additions and 1 deletions

View File

@ -37,6 +37,13 @@ return [
'show_ads_count', 'show_ads_count',
], ],
], ],
'ads_detail' => [
'title' => 'visiosoft.module.advs::section.ads_detail',
'fields' => [
'ads_id_date_hidden',
'hide_seller_info',
]
],
'create_ad' => [ 'create_ad' => [
'title' => 'visiosoft.module.advs::section.create_ad', 'title' => 'visiosoft.module.advs::section.create_ad',
'fields' => [ 'fields' => [
@ -79,7 +86,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

@ -59,4 +59,6 @@ return [
'status' => [ 'status' => [
'title' => 'Status', 'title' => 'Status',
], ],
'ads_detail' => 'Ads Detail',
]; ];

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',