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

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 $helperBuildMemberUrl = new Default_View_Helper_BuildMemberUrl();
0024 $helperAuthUser = new Default_View_Helper_GetAuthUser();
0025 $member = $helperAuthUser->getAuthUser();
0026 ?>
0027 <ul class="dropdown-menu small" role="menu" aria-labelledby="user-dropdown-menu">
0028     <li class="presentation"><a class="black"
0029                                 role="menuitem"
0030                                 href="<?php echo $helperBase->buildBaseUrl('product/add'); ?>"><?= $this->translate('Add Product') ?></a></li>
0031     <li class="presentation"><a class="black" role="menuitem"
0032                                 href="<?= $helperBuildMemberUrl->buildMemberUrl($member->username, 'products') ?>"><?= $this->translate('My Products') ?></a>
0033     </li>
0034     <li class="presentation"><a class="black"
0035                                 role="menuitem"
0036                                 href="/payments/"><?= $this->translate('My Payments') ?></a></li>
0037     <li class="presentation"><a class="black" role="menuitem"
0038                                 href="/incomings/"><?= $this->translate('My Incomings') ?></a></li>
0039     <li class="presentation"><a class="black"
0040                                 role="menuitem"
0041                                 href="/settings/"><?= $this->translate('My Settings') ?></a></li>
0042     <li class="presentation"><a class="black" role="menuitem" href="/logout/"><?= $this->translate('Logout') ?></a></li>
0043 </ul><!-- END #user-menu -->