Файл: templates/modern/content/default_list_featured.tpl.php
Строк: 105
<?php
/**
* Template Name: LANG_CP_LISTVIEW_STYLE_FEATURED
* Template Type: content
*/
if( $ctype['options']['list_show_filter'] ) {
$this->renderAsset('ui/filter-panel', array(
'css_prefix' => $ctype['name'],
'page_url' => $page_url,
'fields' => $fields,
'props_fields' => $props_fields,
'props' => $props,
'filters' => $filters,
'ext_hidden_params' => $ext_hidden_params,
'is_expanded' => $ctype['options']['list_expand_filter']
));
}
?>
<?php if (!$items){ ?>
<p class="alert alert-info mt-4 alert-list-empty">
<?php if(!empty($ctype['labels']['many'])){ ?>
<?php echo sprintf(LANG_TARGET_LIST_EMPTY, $ctype['labels']['many']); ?>
<?php } else { ?>
<?php echo LANG_LIST_EMPTY; ?>
<?php } ?>
</p>
<?php return; } ?>
<div class="content_list tiled featured <?php echo $ctype['name']; ?>_list row">
<?php $index = 0; ?>
<?php foreach($items as $item){ ?>
<?php
$class = $index == 0 ? 'col-md-6 col-lg-12 mb-sm-4' : ($index <= 3 ? 'col-md-6 col-lg-4' : 'col-md-4 col-lg-3');
$title_tag = $index == 0 ? 'h2' : ($index <= 3 ? 'h3' : 'h4');
?>
<div class="tile <?php echo $ctype['name']; ?>_list_item <?php echo $class; ?>">
<div class="article">
<div class="icms-content-fields">
<?php foreach($item['fields'] as $field){ ?>
<div class="field ft_<?php echo $field['type']; ?> f_<?php echo $field['name']; ?>">
<?php if ($field['label_pos'] != 'none'){ ?>
<div class="title_<?php echo $field['label_pos']; ?>">
<?php echo string_replace_svg_icons($field['title']) . ($field['label_pos']=='left' ? ': ' : ''); ?>
</div>
<?php } ?>
<?php if ($field['name'] == 'title' && $ctype['options']['item_on']){ ?>
<<?php echo $title_tag; ?> class="value">
<?php if (!empty($this->menus['list_actions_menu'])){ ?>
<div class="dropdown ml-2 float-right">
<button class="btn" type="button" data-toggle="dropdown">
<?php html_svg_icon('solid', 'ellipsis-v'); ?>
</button>
<div class="dropdown-menu dropdown-menu-right">
<?php foreach($this->menus['list_actions_menu'] as $menu){ ?>
<a class="dropdown-item <?php echo isset($menu['options']['class']) ? $menu['options']['class'] : ''; ?>" href="<?php echo string_replace_keys_values($menu['url'], $item); ?>" title="<?php html($menu['title']); ?>">
<?php echo $menu['title']; ?>
</a>
<?php } ?>
</div>
</div>
<?php } ?>
<?php if ($item['parent_id']){ ?>
<a class="parent_title" href="<?php echo rel_to_href($item['parent_url']); ?>"><?php html($item['parent_title']); ?></a>
→
<?php } ?>
<?php if (!empty($item['is_private_item'])) { ?>
<?php html($item[$field['name']]); ?>
<span class="is_private text-secondary" title="<?php html($item['private_item_hint']); ?>">
<?php html_svg_icon('solid', 'lock'); ?>
</span>
<?php } else { ?>
<a href="<?php echo href_to($ctype['name'], $item['slug'].'.html'); ?>">
<?php html($item[$field['name']]); ?>
</a>
<?php if ($item['is_private']) { ?>
<span class="is_private text-secondary" title="<?php echo LANG_PRIVACY_HINT; ?>">
<?php html_svg_icon('solid', 'lock'); ?>
</span>
<?php } ?>
<?php } ?>
</<?php echo $title_tag; ?>>
<?php } else { ?>
<div class="value">
<?php echo $field['html']; ?>
</div>
<?php } ?>
</div>
<?php } ?>
</div>
<?php if (!empty($item['show_tags'])){ ?>
<div class="tags_bar mt-3">
<?php echo html_tags_bar($item['tags'], 'content-'.$ctype['name'], 'btn btn-outline-secondary btn-sm mr-1 icms-btn-tag', ''); ?>
</div>
<?php } ?>
<?php if (!empty($item['info_bar'])){ ?>
<div class="info_bar px-0 d-flex text-muted mt-3">
<?php foreach($item['info_bar'] as $bar){ ?>
<div class="mr-3 bar_item <?php echo !empty($bar['css']) ? $bar['css'] : ''; ?>" title="<?php html(!empty($bar['title']) ? $bar['title'] : ''); ?>">
<?php if (!empty($bar['icon'])){ ?>
<?php html_svg_icon('solid', $bar['icon']); ?>
<?php } ?>
<?php if (!empty($bar['href'])){ ?>
<a class="stretched-link" href="<?php echo $bar['href']; ?>">
<?php echo $bar['html']; ?>
</a>
<?php } else { ?>
<?php echo $bar['html']; ?>
<?php } ?>
</div>
<?php } ?>
</div>
<?php } ?>
</div>
</div>
<?php $index++; } ?>
</div>
<?php echo html_pagebar($page, $perpage, $total, $page_url, array_merge($filters, $ext_hidden_params)); ?>
<?php
$this->addTplJSNameFromContext('vendors/slick/slick.min');
$this->addTplCSSNameFromContext('slick');
ob_start();
?>
<script>
icms.menu.initSwipe('.info_bar', {variableWidth: true});
</script>
<?php $this->addBottom(ob_get_clean()); ?>