Created
February 11, 2020 12:12
-
-
Save ig0r74/d6d34485b0934f15134989cc608a9efb to your computer and use it in GitHub Desktop.
Выборка товаров по цвету MODX minishop2 where data.color
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{'!Localizator' | snippet : [ | |
'snippet' => 'msProducts', | |
'tpl' => 'good.like', | |
'leftJoin' => [ | |
"big_2" => [ | |
"class" => "msProductFile", | |
"alias" => "big_2", | |
"on" => "big_2.product_id = msProduct.id AND big_2.rank = 1 AND big_2.path LIKE '%/big/%'" | |
] | |
], | |
'select' => ["big_2" => "big_2.url as big_2"], | |
'innerJoin' => [ | |
'Options' => [ | |
'class' => 'msProductOption' | |
] | |
], | |
'groupby' => 'msProduct.id', | |
'where' => [ | |
'Options.key' => 'color', | |
'Options.value:IN' => $_modx->resource.color | |
] | |
]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment