File indexing completed on 2025-05-04 05:29:32
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 = 'supporter'; 0024 0025 ?> 0026 <main class="user-admin-page"> 0027 <?php echo $this->render('user/partials/userHeader_top.phtml'); ?> 0028 <section class="body-wrap"> 0029 <section class="wrapper product-page"> 0030 <!-- PAGE BODY --> 0031 <section class="my-products-page"> 0032 <!-- NAVIGATION --> 0033 <?php echo $this->render('user/partials/userHeader.phtml'); ?> 0034 <!-- /NAVIGATION --> 0035 0036 <div class="my-products-heading"> 0037 <h1 class="page-title left"><?= $this->translate('Supporter') ?></h1> 0038 </div> 0039 0040 <div class=""> 0041 <div class="row"> 0042 <div class="col-lg-2">Donation time </div> 0043 <div class="col-lg-2">Amount</div> 0044 </div> 0045 <?php 0046 foreach ($this->supporterlist as $value) { 0047 echo '<div class="row"><div class="col-lg-2">' 0048 .$this->printDate($value['create_time']) 0049 .'</div><div class="col-lg-2">' 0050 .$value['amount'].'</div></div>'; 0051 0052 } 0053 ?> 0054 </div> 0055 </section> 0056 0057 <!-- /PAGE BODY --> 0058 0059 </section> 0060 0061 </section> 0062 0063 </main>