Лучший Ответ Sliapy , 16 February 2014 - 11:21
Обертка создается в файле \media\zoo\applications\jbuniversal\framework\helpers\jblayout.php
// add item wrapper if enabled
$wrapperTag = 'none';
if ($this->_application) {
$wrapperTag = $this->_application->params->get('global.config.wrap_item_style', 'none');
}
if ($wrapperTag != 'none') {
$class = array(
'jbzoo-item',
'jbzoo-item-' . $item->type,
'jbzoo-item-' . $defaultLayout,
'jbzoo-item-' . $item->id
);
$htmlItem = '<' . $wrapperTag . ' class="' . implode(' ', $class) . '">' . $htmlItem . '</' . $wrapperTag . '>';
}
$this->app->jbdebug->mark('jblayout::itemRender (' . $item->id . ')::finish');
return $htmlItem;
}


Тема закрыта







