File indexing completed on 2025-05-04 05:29:03
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 <?php 0024 $helperAddDefaultScheme = new Default_View_Helper_AddDefaultScheme(); 0025 $helperBuildMemberUrl = new Default_View_Helper_BuildMemberUrl(); 0026 $helperImage = new Default_View_Helper_Image(); 0027 0028 ?> 0029 <div class="col-lg-12 col-md-12 col-sm-12 col-xs-6 col-container"> 0030 <div class="well about-me-sidebar-section"> 0031 <div class="sidebar-header"> 0032 <h3><?= $this->translate('MEMBER INFO') ?></h3> 0033 </div> 0034 <div class="sidebar-content"> 0035 <div class="row product-maker-sidebar"> 0036 <div class="col-md-5 col-lg-5 col-sm-5 col-xs-5 product-maker-thumbnail relative"> 0037 <a target="_blank" 0038 href="<?php echo $helperBuildMemberUrl->buildMemberUrl($this->member->username); ?>" 0039 title="<?= $this->member->username ?>"> 0040 <div class="profile-image-overlay-4 absolute"></div> 0041 <img src="<?= $helperImage->Image($this->member->profile_image_url, array('width' => 100, 'height' => 100)); ?>" alt="member profile image" width="100" 0042 height="100" class="sidebar-profile-image"> 0043 </a> 0044 </div> 0045 <div class="col-md-7 col-lg-7 col-sm-7 col-xs-7 product-maker-summary"> 0046 <h4><a target="_blank" 0047 href="<?php echo $helperBuildMemberUrl->buildMemberUrl($this->member->username); ?>"><span 0048 class="glyphicon glyphicon-link"></span> <?= $this->member->username; ?></a></h4> 0049 0050 <div 0051 class="col-md-12 col-lg-12 col-sm-12 col-xs-12 small"><?= $this->member->firstname ?> <?= $this->member->lastname ?></div> 0052 <div 0053 class="col-md-12 col-lg-12 col-sm-12 col-xs-12 small"><?= $this->member->city ?> <?= $this->member->country ?></div> 0054 <div class="col-md-12 col-lg-12 col-sm-12 col-xs-12 small"><a 0055 href="mailto:<?= $this->member->mail ?>"><span 0056 class="glyphicon glyphicon-envelope"></span> <?= $this->member->mail ?></a></div> 0057 <div class="col-md-12 col-lg-12 col-sm-12 col-xs-12 small"><a 0058 href="<?= $helperAddDefaultScheme->addDefaultScheme($this->member->link_website); ?>" 0059 class="lightblue" 0060 target="_blank"><span 0061 class="glyphicon glyphicon-link"></span> <?= $this->member->link_website; ?></a> 0062 </div> 0063 <div class="col-md-12 col-lg-12 col-sm-12 col-xs-12 small"><a 0064 href="<?= $this->member->link_facebook ?>" 0065 target="_blank"><?= $this->member->link_facebook ?></a></div> 0066 <div class="col-md-12 col-lg-12 col-sm-12 col-xs-12 small"><a 0067 href="<?= $this->member->link_twitter ?>" 0068 target="_blank"><?= $this->member->link_twitter ?></a></div> 0069 <div class="col-md-12 col-lg-12 col-sm-12 col-xs-12 small">Facebook Name: <?= $this->member->facebook_username ?></div> 0070 <div class="col-md-12 col-lg-12 col-sm-12 col-xs-12 small">Twitter Name: <?= $this->member->twitter_username ?></div> 0071 </div> 0072 </div> 0073 </div> 0074 </div> 0075 </div>