Last active
February 12, 2019 18:22
-
-
Save jerrydeakins/6772cbba528984dab68f57d9d1ca5acf to your computer and use it in GitHub Desktop.
Заметки для modx revolution
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
Простой поиск по сайту (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