Skip to content

Instantly share code, notes, and snippets.

@jerrydeakins
Last active February 12, 2019 18:22
Show Gist options
  • Save jerrydeakins/6772cbba528984dab68f57d9d1ca5acf to your computer and use it in GitHub Desktop.
Save jerrydeakins/6772cbba528984dab68f57d9d1ca5acf to your computer and use it in GitHub Desktop.
Заметки для modx revolution
Простой поиск по сайту (modx revolution)
----------------------------------------
// Так можно сделать простейший поиск через pdoPage
// для отображения картинок в minishop2, необходимо добавить: 'element' => 'msProducts'
{'!pdoPage' | snippet : [
'parents' => 0,
'includeContent' => 1,
'context' => $_modx->context.key,
'where' => [
[
'context_key' => $_modx->context.key
],
[
'AND:pagetitle:LIKE' => '%'~ $.get.search | escape ~'%',
'OR:introtext:LIKE' => '%'~ $.get.search | escape ~'%',
'OR:content:LIKE' => '%'~ $.get.search | escape ~'%'
]
] | toJSON,
'tpl' => ''
]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment