PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
wiloke-listing-tools
/
app
/
Register
/
views
/
invoices
<?php use WilokeListingTools\Framework\Helpers\GetWilokeSubmission; use WilokeListingTools\Models\PaymentMetaModel; ?> <tbody> <?php if (empty($this->aInvoices)) : ?> <tr> <td colspan="11" class="text-center"><strong><?php esc_html_e('There are no invoices yet.', 'wiloke-listing-tools'); ?></strong></td> </tr> <?php else: ?> <?php foreach ($this->aInvoices as $aInfo) : $editLink = admin_url('admin.php').'?page='.$this->detailSlug.'&paymentID='.$aInfo['ID']; if (!empty($aInfo['planID'])) { $editLink = admin_url('post.php?action=edit&post='.$aInfo['planID']); $target = '_blank'; } else { $target = '_self'; } ?> <tr class="item"> <td class="invoices-checkbox invoice-small check-column manage-column"> <input class="wiloke_checkbox_item" type="checkbox" value="<?php echo esc_attr($aInfo['ID']); ?>" name="delete[]"> </td> <td class="invoices-id invoice-small check-column manage-column"> <a href="#"><?php echo esc_html($aInfo['ID']); ?></a> </td> <td class="invoices-customer invoice-medium manage-column column-primary" data-colname="<?php esc_html_e('Customer', 'wiloke-listing-tools'); ?>"> <a title="<?php esc_html_e('View customer information', 'wiloke-listing-tools'); ?>" href="<?php echo esc_url(admin_url('user-edit.php?user_id='.$aInfo['userID'])); ?>"> <?php echo esc_html(get_user_meta($aInfo['userID'], 'nickname', true)); ?> </a> </td> <td class="invoices-payment-id invoice-small check-column manage-column"> <a href="<?php echo esc_url($editLink); ?>" title="<?php esc_html_e('View Session Details', 'wiloke-listing-tools'); ?>"> <?php echo esc_html($aInfo['paymentID']); ?> </a> </td> <td class="invoices-plan-id invoice-medium check-column manage-column"> <a href="<?php echo esc_url($editLink); ?>" target="<?php echo esc_attr($target); ?>"> <?php echo !empty($aInfo['planID']) ? get_the_title($aInfo['planID']) : PaymentMetaModel::get($aInfo['paymentID'], 'planName'); ?></a> </td> <td class="invoices-gateway invoice-medium check-column manage-column"> <a href="<?php echo esc_url($editLink); ?>"><?php echo esc_html($aInfo['gateway']); ?></a> </td> <td class="invoices-sub-total invoice-small check-column manage-column"> <a href="<?php echo esc_url($editLink); ?>"> <?php echo esc_html(GetWilokeSubmission::renderPrice($aInfo['subTotal'], $aInfo['currency'])); ?></a> </td> <td class="invoices-currency invoice-small check-column manage-column"> <a href="<?php echo esc_url($editLink); ?>"> <?php echo esc_html(GetWilokeSubmission::renderPrice($aInfo['discount'], $aInfo['currency'])); ?></a> </td> <td class="invoices-tax invoice-small check-column manage-column"> <a href="<?php echo esc_url($editLink); ?>"> <?php echo esc_html(GetWilokeSubmission::renderPrice($aInfo['tax'], $aInfo['currency'])); ?></a> </td> <td class="invoices-total invoice-small check-column manage-column"> <a href="<?php echo esc_url($editLink); ?>"> <?php echo esc_html(GetWilokeSubmission::renderPrice($aInfo['total'], $aInfo['currency'])); ?></a> </td> <td class="invoices-created_at invoice-large check-column manage-column"> <a href="<?php echo esc_url($editLink); ?>"><?php echo esc_html($aInfo['created_at']); ?></a> </td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody>
[+]
..
[-] form-filters.php
[edit]
[-] tbody.php
[edit]
[-] thead.php
[edit]
[-] tfood.php
[edit]