sdlmaster
9/5/2016 - 3:10 PM

Выборка дополнительных категорий и вывод ссылок на них.

Выборка дополнительных категорий и вывод ссылок на них.

<?php
if (empty($id)) {$id = $modx->resource->id;}if (empty($tpl)) {$tpl = '@INLINE <a href="[[~[[+id]]]]">[[+pagetitle]]</a>';}
$pdo = $modx->getService('pdoFetch');

$conditions = array('product_id' => $id);
$options = array(
        'innerJoin' => array(
                'msCategory' => array('on' => 'msCategoryMember.category_id = msCategory.id')
        ),
        'select' => array('msCategory' => 'all'),
        'sortby' => 'msCategory.id');
$rows = $pdo->getCollection('msCategoryMember', $conditions, $options);

$output = '';foreach ($rows as $row) {
        $output .= $pdo->getChunk($tpl, $row);}

return $output;