Magento 2 : get all store list by sort order The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Category sort order for different storesGet all active store views domainsget available payment method in magento storemagento multilanguge sort order of storeMagento 2 - How to list websites on frontendChange store switcher select list into buttonsGet list of Locale for all storesImage gallery sort order across multiple store frontsHow to get list to store views collection along with stores in magento2How to Get all the websites,stores and storeviews details in a single collection Magento2
Why are PDP-7-style microprogrammed instructions out of vogue?
60's-70's movie: home appliances revolting against the owners
Am I ethically obligated to go into work on an off day if the reason is sudden?
Is there a writing software that you can sort scenes like slides in PowerPoint?
Why doesn't a hydraulic lever violate conservation of energy?
What information about me do stores get via my credit card?
Single author papers against my advisor's will?
Didn't get enough time to take a Coding Test - what to do now?
Can the DM override racial traits?
Did the new image of black hole confirm the general theory of relativity?
Do warforged have souls?
What is the padding with red substance inside of steak packaging?
What's the point in a preamp?
how can a perfect fourth interval be considered either consonant or dissonant?
Do I have Disadvantage attacking with an off-hand weapon?
How to determine omitted units in a publication
Make it rain characters
Deal with toxic manager when you can't quit
Python - Fishing Simulator
Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?
Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?
Using dividends to reduce short term capital gains?
Sub-subscripts in strings cause different spacings than subscripts
How do I design a circuit to convert a 100 mV and 50 Hz sine wave to a square wave?
Magento 2 : get all store list by sort order
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Category sort order for different storesGet all active store views domainsget available payment method in magento storemagento multilanguge sort order of storeMagento 2 - How to list websites on frontendChange store switcher select list into buttonsGet list of Locale for all storesImage gallery sort order across multiple store frontsHow to get list to store views collection along with stores in magento2How to Get all the websites,stores and storeviews details in a single collection Magento2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to get store list sort by sort order. How to get it?
I just use this code. Which code i need to add ?
$stores = $this->storeManager->getStores();
magento2 multistore stores
add a comment |
I want to get store list sort by sort order. How to get it?
I just use this code. Which code i need to add ?
$stores = $this->storeManager->getStores();
magento2 multistore stores
add a comment |
I want to get store list sort by sort order. How to get it?
I just use this code. Which code i need to add ?
$stores = $this->storeManager->getStores();
magento2 multistore stores
I want to get store list sort by sort order. How to get it?
I just use this code. Which code i need to add ?
$stores = $this->storeManager->getStores();
magento2 multistore stores
magento2 multistore stores
asked yesterday
Emipro Technologies Pvt. Ltd.Emipro Technologies Pvt. Ltd.
2,6421925
2,6421925
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$stores = $this->storeManager->getStores();
uasort(
$stores,
function (MagentoStoreModelStore $storeA, MagentoStoreModelStore $storeB)
return $storeA->getSortOrder() <=> $storeB->getSortOrder();
);
Now the variable $stores
should contain all your stores sorted by sort_order
.
Is it possible in Magento way?
– Emipro Technologies Pvt. Ltd.
yesterday
1
what do you mean by "magento way"?
– Marius♦
yesterday
I'm just asking about is there any other way instead of uasort();
– Emipro Technologies Pvt. Ltd.
yesterday
Because, $stores; inside uasort() returns error in sublime text editor for something like syntax error so.
– Emipro Technologies Pvt. Ltd.
yesterday
Oups. Sorry. I got the order of the parameters wrong. I've updated the answer
– Marius♦
yesterday
|
show 2 more comments
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f269630%2fmagento-2-get-all-store-list-by-sort-order%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$stores = $this->storeManager->getStores();
uasort(
$stores,
function (MagentoStoreModelStore $storeA, MagentoStoreModelStore $storeB)
return $storeA->getSortOrder() <=> $storeB->getSortOrder();
);
Now the variable $stores
should contain all your stores sorted by sort_order
.
Is it possible in Magento way?
– Emipro Technologies Pvt. Ltd.
yesterday
1
what do you mean by "magento way"?
– Marius♦
yesterday
I'm just asking about is there any other way instead of uasort();
– Emipro Technologies Pvt. Ltd.
yesterday
Because, $stores; inside uasort() returns error in sublime text editor for something like syntax error so.
– Emipro Technologies Pvt. Ltd.
yesterday
Oups. Sorry. I got the order of the parameters wrong. I've updated the answer
– Marius♦
yesterday
|
show 2 more comments
$stores = $this->storeManager->getStores();
uasort(
$stores,
function (MagentoStoreModelStore $storeA, MagentoStoreModelStore $storeB)
return $storeA->getSortOrder() <=> $storeB->getSortOrder();
);
Now the variable $stores
should contain all your stores sorted by sort_order
.
Is it possible in Magento way?
– Emipro Technologies Pvt. Ltd.
yesterday
1
what do you mean by "magento way"?
– Marius♦
yesterday
I'm just asking about is there any other way instead of uasort();
– Emipro Technologies Pvt. Ltd.
yesterday
Because, $stores; inside uasort() returns error in sublime text editor for something like syntax error so.
– Emipro Technologies Pvt. Ltd.
yesterday
Oups. Sorry. I got the order of the parameters wrong. I've updated the answer
– Marius♦
yesterday
|
show 2 more comments
$stores = $this->storeManager->getStores();
uasort(
$stores,
function (MagentoStoreModelStore $storeA, MagentoStoreModelStore $storeB)
return $storeA->getSortOrder() <=> $storeB->getSortOrder();
);
Now the variable $stores
should contain all your stores sorted by sort_order
.
$stores = $this->storeManager->getStores();
uasort(
$stores,
function (MagentoStoreModelStore $storeA, MagentoStoreModelStore $storeB)
return $storeA->getSortOrder() <=> $storeB->getSortOrder();
);
Now the variable $stores
should contain all your stores sorted by sort_order
.
edited yesterday
answered yesterday
Marius♦Marius
168k28324691
168k28324691
Is it possible in Magento way?
– Emipro Technologies Pvt. Ltd.
yesterday
1
what do you mean by "magento way"?
– Marius♦
yesterday
I'm just asking about is there any other way instead of uasort();
– Emipro Technologies Pvt. Ltd.
yesterday
Because, $stores; inside uasort() returns error in sublime text editor for something like syntax error so.
– Emipro Technologies Pvt. Ltd.
yesterday
Oups. Sorry. I got the order of the parameters wrong. I've updated the answer
– Marius♦
yesterday
|
show 2 more comments
Is it possible in Magento way?
– Emipro Technologies Pvt. Ltd.
yesterday
1
what do you mean by "magento way"?
– Marius♦
yesterday
I'm just asking about is there any other way instead of uasort();
– Emipro Technologies Pvt. Ltd.
yesterday
Because, $stores; inside uasort() returns error in sublime text editor for something like syntax error so.
– Emipro Technologies Pvt. Ltd.
yesterday
Oups. Sorry. I got the order of the parameters wrong. I've updated the answer
– Marius♦
yesterday
Is it possible in Magento way?
– Emipro Technologies Pvt. Ltd.
yesterday
Is it possible in Magento way?
– Emipro Technologies Pvt. Ltd.
yesterday
1
1
what do you mean by "magento way"?
– Marius♦
yesterday
what do you mean by "magento way"?
– Marius♦
yesterday
I'm just asking about is there any other way instead of uasort();
– Emipro Technologies Pvt. Ltd.
yesterday
I'm just asking about is there any other way instead of uasort();
– Emipro Technologies Pvt. Ltd.
yesterday
Because, $stores; inside uasort() returns error in sublime text editor for something like syntax error so.
– Emipro Technologies Pvt. Ltd.
yesterday
Because, $stores; inside uasort() returns error in sublime text editor for something like syntax error so.
– Emipro Technologies Pvt. Ltd.
yesterday
Oups. Sorry. I got the order of the parameters wrong. I've updated the answer
– Marius♦
yesterday
Oups. Sorry. I got the order of the parameters wrong. I've updated the answer
– Marius♦
yesterday
|
show 2 more comments
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f269630%2fmagento-2-get-all-store-list-by-sort-order%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown