File indexing completed on 2024-12-29 05:24:38

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 $titleImage = $this->Image($this->project->image_small, array('width' => 139, 'height' => 94));
0024 $imageTag = '<img src="' . $titleImage . '" alt="product-image" width="139">';
0025 if (strpos($titleImage, 'default.png') !== false) {
0026     $imageTag = '';
0027 }
0028 if (null != ($this->project->image_big)): ?>
0029 <div id="product-profile-header" class="profile-header" style="background: url('<?= $this->Image($this->project->image_big, array('width' => 1170, 'height' => 300)); ?>');">
0030     <?php else: ?>
0031     <div id="product-profile-header-small" class="profile-header">
0032         <?php endif; ?>
0033         <div id="product-profile-header-content" class="profile-header-content clearfix">
0034             <div class="alignleft textshadow" id="product-profile-image">
0035                 <?= $imageTag ?>
0036             </div>
0037 
0038             <div class="alignleft textshadow" id="summary">
0039                 <h3 id="product-profile-title" class="light"><?php echo $this->project->title; ?></h3>
0040 
0041                 <div id="product-description">
0042                     <a href="<?php echo $this->buildExploreUrl($this->project->project_category_id); ?>"><?php echo $this->project->cat_title; ?></a>
0043                     by <a
0044                         href="<?php echo $this->buildMemberUrl($this->member->username, 'aboutme'); ?>"><?php echo $this->member->username; ?></a>
0045                 </div>
0046             </div>
0047             <div class="alignright" id="pling-summary">
0048                 <div id="pling-summary-text"
0049                      class="black"><?php echo $this->project->collectPlingsAll; ?><?php echo $this->translate('projects.head.plings_collected'); ?></div>
0050                 <a class="btn partial" href="<?= $this->buildProductUrl($this->project->project_id, 'pling') ?>"
0051                    data-target="#modal-dialog" data-toggle="#modal-dialog">
0052                     <button class="bluebutton">pling</button>
0053                 </a>
0054             </div>
0055         </div>
0056         <!-- END #product-profile-header-content -->
0057     </div>
0058     <!-- END #product-profile-header -->