File indexing completed on 2025-05-04 05:29:29
0001 0002 0003 <div class="row smaller header" > 0004 <div class="col-lg-5 col-md-5"> 0005 <figure> 0006 <img src="<?php echo $this->Image($this->file->image_small, array('width' => 80, 'height' => 80)); ?>" class="downloadhistory-image" /> 0007 </figure> 0008 <div> 0009 <a href="<?= $this->buildProductUrl($this->file->project_id) ?>"><?=$this->file->title?></a> 0010 <p><?=$this->file->cat_title?> 0011 </div> 0012 </div> 0013 0014 <div class="col-lg-2 col-md-2" style="white-space: nowrap; padding-top: 20px"> 0015 by <a href="<?php echo $this->buildMemberUrl($this->file->project_username); ?>" class="tooltipuser" data-tooltip-content="#tooltip_content" data-user="<?=$this->file->project_member_id?>"> 0016 <?=$this->file->project_username?></a> 0017 </div> 0018 0019 <div class="col-lg-2 col-md-2"> 0020 <div class="rating text-center" > 0021 <?php 0022 $this->widgetRating = new stdClass(); 0023 $this->widgetRating->project_id =$this->file->project_id; 0024 $this->widgetRating->laplace_score = $this->file->laplace_score; 0025 $this->widgetRating->count_likes =$this->file->count_likes; 0026 $this->widgetRating->count_dislikes =$this->file->count_dislikes; 0027 echo $this->render('partials/widgetRating.phtml'); 0028 ?> 0029 </div> 0030 </div> 0031 0032 0033 <div class="col-lg-3" > 0034 <i class="fa fa-heart myfav" aria-hidden="true" ></i> 0035 <?=$this->printDate($this->file->created_at)?> 0036 </div> 0037 </div> 0038