File indexing completed on 2024-12-29 05:24:45
0001 <?php 0002 /** 0003 * ocs-webserver 0004 * 0005 * Copyright 2016 by pling GmbH. 0006 * 0007 * This file is part of ocs-webserver. 0008 * 0009 * This program is free software: you can redistribute it and/or modify 0010 * it under the terms of the GNU Affero General Public License as 0011 * published by the Free Software Foundation, either version 3 of the 0012 * License, or (at your option) any later version. 0013 * 0014 * This program is distributed in the hope that it will be useful, 0015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0017 * GNU Affero General Public License for more details. 0018 * 0019 * You should have received a copy of the GNU Affero General Public License 0020 * along with this program. If not, see <http://www.gnu.org/licenses/>. 0021 **/ 0022 0023 $plingData = $this->userPlings($this->hits->project_id); 0024 $plingMoney = $this->plingMoney($this->hits->project_id); 0025 /*$latestPling = $this->humanTiming($this->hits->created_at);*/ 0026 ?> 0027 0028 <div class="explore-product col-lg-12 col-md-12 col-sm-12 col-xs-12"> 0029 <figure class="col-lg-2 col-md-2 col-sm-2 col-xs-2"> 0030 <a href="<?= $this->hits->showUrl ?>"> 0031 <img src="<?php echo $this->Image($this->hits->image_small, array('width' => 280, 'height' => 167)); ?>" 0032 class="explore-product-image" width="101" height="81"/> 0033 </a> 0034 </figure> 0035 <div class="explore-product-details col-lg-7 col-md-7 col-sm-7 col-xs-7"> 0036 <h3><a href="<?= $this->buildProductUrl($this->project_id); ?>"><?= $this->hits->title ?></a></h3> 0037 <span>By <b><?= $this->hits->username ?></b></span> 0038 <span>In <b><?php echo $this->hits->category; ?></b></span> 0039 </div> 0040 <div class="explore-product-plings col-lg-3 col-md-3 col-sm-3 col-xs-3"> 0041 <div class="progress"> 0042 <div class="bar no-goal"></div> 0043 </div> 0044 <div class="collected"> 0045 <span class="count"><?= $this->toCurrency($this->count_amount) ?></span> 0046 <span><?php /*=$latestPling['age']?> <?=$latestPling['unit']*/ ?> ago</span> 0047 </div> 0048 </div> 0049 </div><!-- END .explore-product -->