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 $this->tab = 'add';
0024 $helperImage = new Default_View_Helper_Image();
0025 $helpMemberUrl = new Default_View_Helper_BuildMemberUrl();
0026 ?>
0027 <main class="user-admin-page">
0028     <section class="head-wrap">
0029 
0030         <!-- HEADER -->
0031 
0032         <section class="wrapper about-me-header">
0033 
0034             <figure>
0035                 <img src="<?php echo $helperImage->Image($this->member->profile_image_url,array('width' => 110, 'height' => 110, 'crop' => 2)); ?>" alt="profile-image" width="110" height="110">
0036             </figure>
0037 
0038             <div class="user-menu well">
0039 
0040                 <div class="pull-left">
0041                     <div class="intro">
0042                         <div class="large">
0043                             Hi
0044                             <span class="lightblue"><?php echo $this->member->username; ?></span><?= $this->translate(', welcome to your personal start page!') ?>
0045                         </div>
0046                         <div class="small lightgrey">
0047                             <a href="<?php echo $helpMemberUrl->buildMemberUrl($this->member->username); ?>"><?= $this->translate('Click here to go to your About Me page.') ?></a>
0048                         </div>
0049                     </div>
0050                 </div>
0051 
0052             </div>
0053 
0054         </section>
0055 
0056         <!-- /HEADER -->
0057 
0058     </section>
0059 
0060     <section class="body-wrap">
0061 
0062         <section class="wrapper">
0063 
0064             <!-- PAGE BODY -->
0065 
0066             <section class="add-product-page">
0067 
0068                 <!-- NAVIGATION -->
0069 
0070                 <?php
0071                 echo $this->render('user/partials/userHeader.phtml');
0072                 ?>
0073 
0074                 <!-- /NAVIGATION -->
0075 
0076                 <!-- add product top -->
0077                 <div class="add-product-top clearfix">
0078                     <h1 class="page-title left"><?= $this->translate($this->title) ?></h1>
0079                     <ul class="steps right">
0080                         <li class="active"><?= $this->translate('STEP 1 - ADD') ?></li>
0081                         <li><?= $this->translate('STEP 2 - PREVIEW') ?></li>
0082                     </ul>
0083                 </div>
0084                 <!-- /add product top -->
0085                 <!-- add product form -->
0086                 <div class="row add-product-container">
0087                     <?= $this->form ?>
0088                 </div>
0089                 <!-- /add product form -->
0090             </section>
0091 
0092             <!-- /PAGE BODY -->
0093 
0094         </section>
0095 
0096     </section>
0097 
0098 </main>
0099 <?php $this->inlineScript()->appendScript(
0100     '    $(document).ready(function(){
0101             ImagePreview.setup();
0102         });
0103     ');