File indexing completed on 2024-12-29 05:24:40
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="support modal-dialog content-modal"> 0024 0025 <div class="modal-content"> 0026 <!-- modal header --> 0027 <div class="modal-header"> 0028 <button type="button" class="close support-close" data-dismiss="modal" aria-hidden="true">×</button> 0029 <h3 class="center"><?= $this->translate('Support The Product') ?></h3> 0030 </div> 0031 <!-- /modal header --> 0032 <!-- modal body --> 0033 <div class="modal-body"> 0034 <!-- product info --> 0035 <div class="clearfix product-info"> 0036 <!-- product-about --> 0037 <div class="product-about center left large"> 0038 <div class="product-title"><?= $this->product->title ?></div> 0039 <div class="product-maker lightgrey"><?= $this->translate('made by') ?> <?= $this->product->username ?></div> 0040 </div> 0041 <!-- /product-about --> 0042 <!-- product-summary --> 0043 <div class="right"> 0044 <img src="<?= $this->Image($this->product->image_small, array('width' => 132, 'height' => 88)); ?>" 0045 class="" 0046 alt="product"> 0047 </div> 0048 <!-- /product-summary --> 0049 </div> 0050 <hr> 0051 <div class="center"> 0052 <div class="product-support"><?= $this->translate('We\'re sorry, but the user has no payment account stored.') ?></div> 0053 <div class="product-title"><?= $this->translate('Please try again later.') ?></div> 0054 </div> 0055 <!-- /product info --> 0056 </div> 0057 <!-- /modal body --> 0058 <!-- modal footer --> 0059 <div class="modal-footer"> 0060 <div class="product-maker lightgrey center"> 0061 <button type="submit" 0062 class="btn btn-pling" 0063 data-dismiss="modal" 0064 aria-hidden="true"><?= $this->translate('Close') ?></button> 0065 </div> 0066 0067 </div> 0068 <!--/modal footer --> 0069 </div> 0070 0071 </div><!-- /.support --> 0072 0073 <?php $this->inlineScript()->appendScript( 0074 ' $(document).ready(function(){ 0075 0076 }); 0077 ');