Доработать виджет ICMS2
'title' => LANG_WD_CONTENT_LIST_DETAILS, )),
'title' => 'Показать автора', )), 'title' => 'Показать дату', )), 'title' => 'Показать комментарии', )),
<?php if($show_author) { ?>ИМЯ АВТОРА<?php } ?>
'title' => LANG_WD_CONTENT_LIST_DETAILS, )), 'title' => 'Показать автора', )), 'title' => 'Показать дату', )), 'title' => 'Показать комментарии', )),
<?php if ($is_show_details) { ?> <div class="details"> <?php if ($is_show_author) { ?> <span class="author"> <a href="<?php echo href_to('users', $item['user']['id']); ?>"><?php html($item['user']['nickname']); ?></a> <?php if ($item['parent_id']){ ?> <?php echo LANG_WROTE_IN_GROUP; ?> <a href="<?php echo href_to($item['parent_url']); ?>"><?php html($item['parent_title']); ?></a> <?php } ?> </span> <?php } ?> <?php if ($is_show_date) { ?> <span class="date"> <?php html(string_date_age_max($item['date_pub'], true)); ?> </span> <?php } ?> <?php if ($is_show_comments) { ?> <?php if($ctype['is_comments']){ ?> <span class="comments"> <a href="<?php echo $url . '#comments'; ?>" title="<?php echo LANG_COMMENTS; ?>"><?php echo intval($item['comments']); ?></a> </span> <?php } ?> <?php } ?> </div> <?php } ?>
Надо получить значение этих опции в system\controllers\content\widgets\list\widget.php например так:всё равно не получается включать и отключать
$show_author = $this->getOption('show_author');
<?php class widgetContentList extends cmsWidget { public function run(){ $ctype_id = $this->getOption('ctype_id'); $dataset_id = $this->getOption('dataset'); $cat_id = $this->getOption('category_id'); $image_field = $this->getOption('image_field'); $teaser_field = $this->getOption('teaser_field'); $is_show_details = $this->getOption('show_details'); $is_show_author = $this->getOption('show_author'); $is_show_date = $this->getOption('show_date'); $is_show_comments = $this->getOption('show_comments'); $style = $this->getOption('style', 'basic'); $limit = $this->getOption('limit', 10); $substr_title = $this->getOption('substr_title', 50); $substr_teaser = $this->getOption('substr_teaser',80);
А потом передать в шаблон
'ctype' => $ctype, 'image_field' => $image_field, 'teaser_field' => $teaser_field, 'is_show_details' => $is_show_details, 'is_show_author'=>$is_show_author, // Вот так каждую переменную, передайте в шаблон 'style' => $style, 'items' => $items );
SE7EN, в файле system\controllers\content\widgets\list\widget.php посмотрите в самом внизу, там переменные передается шаблону
Понял, спасибо ещё раз