Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed multishop option #177

Merged
merged 1 commit into from
Feb 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions controllers/admin/AdminPreferencesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,14 +199,14 @@ public function __construct()
'cast' => 'intval',
'type' => 'bool'
),
'PS_MULTISHOP_FEATURE_ACTIVE' => array(
'title' => $this->l('Enable Multistore'),
'desc' => $this->l('The multistore feature allows you to manage several e-shops with one Back Office. If this feature is enabled, a "Multistore" page will be available in the "Advanced Parameters" menu.'),
'validation' => 'isBool',
'cast' => 'intval',
'type' => 'bool',
'visibility' => Shop::CONTEXT_ALL
),
// 'PS_MULTISHOP_FEATURE_ACTIVE' => array(
// 'title' => $this->l('Enable Multistore'),
// 'desc' => $this->l('The multistore feature allows you to manage several e-shops with one Back Office. If this feature is enabled, a "Multistore" page will be available in the "Advanced Parameters" menu.'),
// 'validation' => 'isBool',
// 'cast' => 'intval',
// 'type' => 'bool',
// 'visibility' => Shop::CONTEXT_ALL
// ),
'PS_SHOP_ACTIVITY' => array(
'title' => $this->l('Main Shop Activity'),
'validation' => 'isInt',
Expand Down