PHP Classes

File: htdocs/themes/xbootstrap/modules/publisher/publisher_categories_table.tpl

Recommend this page to a friend!
  Classes of Michael Beck   Xoops 2.5   htdocs/themes/xbootstrap/modules/publisher/publisher_categories_table.tpl   Download  
File: htdocs/themes/xbootstrap/modules/publisher/publisher_categories_table.tpl
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change:
Date: 7 years ago
Size: 1,338 bytes
 

Contents

Class file image Download
<{assign var=temp value=0}> <div class="row clearfix"> <{foreach item=category from=$categories}> <{assign var=temp value=$temp+1}> <{if !$indexpage}> <div class="col-sm-12 col-md-12" style="margin-bottom: 10px;"> <{else}> <div class="col-sm-4 col-md-4" style="margin-bottom: 10px;"> <{/if}> <{if $selected_category == $category.categoryid}> <h4 class="info"><span class="glyphicon glyphicon-paperclip"></span>&nbsp; <{$category.name}> </h4> <{else}> <h4 class="info"><span class="glyphicon glyphicon-paperclip" style="color:#4087C4;"></span>&nbsp; <{$category.categorylink}> </h4> <{/if}> <div style="display: block;"> <small><{$category.description}></small> </div> <{if $category.subcats}> <div style="height: 1px; background: #F5F5F5; margin: 5px 0;"></div> <{foreach item=subcat from=$category.subcats}> <small><{$subcat.categorylink}> &nbsp;</small> <{/foreach}> <{/if}> </div> <{if $temp%3 == 0}> <div class="clearfix"></div> <{/if}> <{/foreach}> </div> <hr>