171 похожих чатов

Пожалуйста, используется данный сниппет: <?php $id = $modx->resource->id; $opKey = 'msOption'; $copKey = 'msCategoryOption'; $filters

= explode(',', $scriptProperties['filters']);
$tplRow = $scriptProperties['tplFilter.row'];
$tplOuter = $scriptProperties['tplFilter.outer'];

$filterKeys = [];
foreach($filters as $filter) {
$filterKey = reset(explode(':', end(explode('|', $filter))));
$filterKeys[$filterKey] = $filterKey;

}

$q = $modx->newQuery($copKey);
$q->select(array(
"{$copKey}.category_id",
"{$copKey}.option_id",
"{$opKey}.key"
));
$q->where(["{$copKey}.category_id" => $id]);
$q->leftJoin($opKey, $opKey, "{$copKey}.option_id = {$opKey}.id");


$q->prepare();
$q->stmt->execute();
$options = $q->stmt->fetchAll(PDO::FETCH_ASSOC);

$_options = [];

if(count($exclude) > 0) {
foreach ($options as $key => $option) {
if (array_search($option['key'], $exclude) > -1) {
unset($options[$key]);
}
}
}

foreach ($options as $option) {
if(!array_key_exists($option['key'], $filterKeys)) {
switch($option['type']) {
case 'checkbox':
$filter = ':boolean';
break;
case 'numberfield':
$filter = ':number';
break;
default:
$filter = '';
break;
}

if ($option['type'] == 'checkbox') {
$filter = ':boolean';
}

$_options[] = 'msoption|' . $option['key'] . $filter;
$scriptProperties['tplFilter.outer.msoption|' . $option['key']] = $tplOuter;
$scriptProperties['tplFilter.row.msoption|' . $option['key']] = $tplRow;
}
}
$scriptProperties['filters'] = implode(',', array_merge($_options, $filters));

return $modx->runSnippet('mFilter2@filter', $scriptProperties);

вот вызов сниппета

{'!mFilter3' | snippet : [
'includeThumbs' => 'standard',
'parents' => $_modx->resource.id,
'filters' => '
msoption|length:number,
msoption|width:number,
msoption|height:number,
msoption|thickness_mm:number,
msoption|color,
msoption|strana,
msoption|class,
msoption|species,
msoption|construction,
msoption|structure,
msoption|brightness,
msoption|coating,
msoption|collection,
msoption|lay_type,
[[--msoption|material,]]
ms|price:number',
'sortby' => '{"thumb":"desc","price":"asc"}',
'exclude' => $exclude,
'where' => '{ "template":"3"}',
'limit' => '40',
'cacheTime' => '3600',
'cache' => '3600',

'tplOuter' => 'tpl.mFilter2.outer.custom',

'tplFilter.outer' => 'tpl.mFilter2.filter.outer.custom',
'tplFilter.row' => 'tpl.mFilter2.filter.checkbox.custom',

2 ответов

12 просмотров

Сниппет странный.. Попробуй с дефолтным

Developer- Автор вопроса

Похожие вопросы

Обсуждают сегодня

Всем привет! Имеется функция: function IsValidChar(ch: UTF8Char): Boolean; var i: Integer; ValidChars: AnsiString; begin ValidChars := 'abcdefghijklmnopqrstuvwxyzABCDE...
Евгений
44
Коллеги, я тут для личных нужд пошел ставить MQTT сервер, пощупал mosquitto, но ужаснулся отсутствию такой банальности, как HTTP API для посмотреть список топиков. А тут что,...
Maksim Lapshin
14
#include <stdio.h> #include <stdlib.h> #include <time.h> void mass_first_generate(int mass[5][7]) {     for (int N = 0; N < 5; N++) {         for (int A = 0; A < 7; A++) {   ...
Чувак
6
Всем привет! Решаю 99 OCaml Problems и столкнулся со следующей проблемой (прошу палками не забивать, я OCaml практически не трогал до этого момента): open OUnit2 let create_...
К|/|pи/\/\ 6е3yглbIи
2
<?php function prepareTel($data, $modx, $_multiTV) { if ($data['iteration'] == $data['row']['total']) { $data['tel'] = '<a class="link" href="tel: ' . $data['tel']...
Кирилл Гацевич
2
❓ Подскажите как сделать в группе телеги функцию (кнопку) пересылки сообщения где есть нарушение правил? Бот к каждому сообщению (по определенным ключам) добавляет снизу кнопк...
Alexander
4
Hi freinds. I'm reading an old Pascal book and I just want to compile and run its codes using fpc. What's your recommendation to use the environment efficiently? Please send m...
Shak
4
Ну вот просто даже давайте вот как. Какой нибудь конкретный кейс, можете в пример привести, где бч работает и приносит прикладную пользу, а не просто что бы было? Не крипту.
Alexander Andreev
22
https://www.linkedin.com/posts/ugama-benedicta-kelechi-codergirl-103041300_mobiledevelopment-fluttertraining-handsonlearning-activity-7263445699227254784-IdHB?utm_source=share...
CoderGirl
16
возможно ли как-то передать в электрон или таури медиа поток с рендера 2д движка? двиг запускается как dll, а дальше надо как-то отправлять рендер кодировать не подходит, зр...
Kyle Nekto
7
Карта сайта