File indexing completed on 2025-05-04 05:29:02

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