File indexing completed on 2025-05-04 05:29:31
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 <div class="container page-container"> 0024 <?php $this->tab = 'news'; echo $this->render('user/partials/userHeader.phtml'); ?> 0025 0026 <div class="row-fluid about-me"> 0027 <div class="span8 about-me-details"> 0028 <h3 class="about-me-heading"><?= $this->translate('Product News') ?></h3> 0029 0030 0031 <?php if (count($this->activitiesProjects) > 0): ?> 0032 <?php echo $this->partialLoop('user/partials/loopActivitiesProducts.phtml', $this->activitiesProjects) ?> 0033 <?php elseif (count($this->followedProjects) > 0) : ?> 0034 <?= $this->translate('No news for followed products.'); ?> 0035 <?php else : ?> 0036 <?= $this->translate('member.newsfeed.products.noitems') ?> 0037 <?php endif; ?> 0038 <!-- END #user-feed --> 0039 0040 0041 </div> 0042 <!-- /.about-me-details --> 0043 0044 <div class="span4 about-me-sidebar"> 0045 0046 <div class="about-me-sidebar-section"> 0047 <h3><?= $this->translate('LAST ACTIVITIES OF MY FRIENDS') ?></h3> 0048 0049 <div class="sidebar-content"> 0050 <?php if (count($this->activities) > 0): ?> 0051 <?php echo $this->partialLoop('user/partials/loopActivitiesFriends.phtml', $this->activities) ?> 0052 <?php elseif (count($this->followedMembers) > 0) : ?> 0053 <?= $this->translate('No news for followed members.'); ?> 0054 <?php else : ?> 0055 <?= $this->translate('member.newsfeed.friends.noitems') ?> 0056 <?php endif; ?> 0057 </div> 0058 <!-- /.sidebar-content --> 0059 </div> 0060 <!-- /.about-me-sidebar-section --> 0061 0062 0063 </div> 0064 <!-- /.about-me-sidebar --> 0065 </div> 0066 <!-- /.about-me --> 0067 </div> <!-- /.container --> 0068