Skip to content

Instantly share code, notes, and snippets.

@ig0r74
Created February 11, 2020 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ig0r74/d6d34485b0934f15134989cc608a9efb to your computer and use it in GitHub Desktop.
Save ig0r74/d6d34485b0934f15134989cc608a9efb to your computer and use it in GitHub Desktop.
Выборка товаров по цвету MODX minishop2 where data.color
{'!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