File manager - Edit - /home/jardides/www/Jardi-design/components/com_j2store/views/myprofile/tmpl/default_downloads.php
Back
<?php /** * @package J2Store * @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org * @license GNU GPL v3 or later */ // No direct access to this file defined('_JEXEC') or die; ?> <?php foreach($this->orders as $order):?> <?php $model = F0FModel::getTmpInstance('Orderdownloads', 'J2StoreModel'); $model->clearState()->setState('order_id', $order->order_id); $downloads = $model->getList(); ?> <?php if(count($downloads)): ?> <table class="table table-bordered table-striped"> <thead> <tr> <th><?php echo JText::_('J2STORE_INVOICE')?></th> <th><?php echo JText::_('J2STORE_FILES')?></th> <th><?php echo JText::_('J2STORE_ACCESS_EXPIRES')?></th> <th><?php echo JText::_('J2STORE_DOWNLOADS_REMAINING')?></th> </tr> </thead> <?php foreach($downloads as $download) : ?> <?php $available = ($download->download_limit - $download->limit_count ); $remaining = ($available < 0) ? 0 : $available; ?> <?php if(count($download->files)): ?> <tr> <td><?php echo $order->invoice; ?></td> <td> <table class="order-download-files"> <?php foreach($download->files as $file): ?> <tr> <td><?php echo $file->product_file_display_name; ?></td> <td> <?php $profile_html = J2store::plugin()->eventWithHtml('BeforeProfileDownload',array($file,$download));?> <?php if(!empty($profile_html)):?> <?php echo $profile_html;?> <?php elseif($model->validateDownload($download, $file)) : ?> <a href="<?php echo JRoute::_('index.php?option=com_j2store&view=myprofile&task=download&token='.$download->token.'&pid='.$file->j2store_productfile_id); ?>"> <?php echo JText::_('J2STORE_DOWNLOAD'); ?> </a> <?php echo J2store::plugin()->eventWithHtml('AfterProfileDownload',array($file,$download));?> <?php endif; ?> </td> </tr> <?php endforeach; ?> </table> </td> <td> <?php if($download->access_expires == JFactory::getDbo()->getNullDate()): ?> <?php echo JText::_('J2STORE_NEVER_EXPIRES'); ?> <?php else: ?> <?php echo JHTML::_('date', $download->access_expires, $this->params->get('date_format', JText::_('DATE_FORMAT_LC1'))); ?> <?php endif;?> </td> <td><?php echo $remaining; ?></td> </tr> <?php endif; ?> <?php endforeach;?> </table> <?php endif; ?> <?php endforeach;?>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings