PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-pro
/
modules
/
report-abuse
/
views
<fieldset> <table class="wp-list-table widefat fixed striped"> <thead> <tr> <th><?php esc_html_e( 'Reason', 'dokan' ); ?></th> <th><?php esc_html_e( 'Reported by', 'dokan' ); ?></th> <th><?php esc_html_e( 'Reported at', 'dokan' ); ?></th> <th class="action-column"></th> </tr> </thead> <tbody> <?php if ( empty( $reports ) ): ?> <tr> <td colspan="4"> <?php esc_html_e( 'This product has no abuse report', 'dokan' ); ?> </td> </tr> <?php else: ?> <?php foreach( $reports as $report ): ?> <tr> <td> <strong><?php echo esc_html( $report['reason'] ); ?></strong> <?php if ( $report['description'] ): ?> <p><em><small><?php echo esc_html( $report['description'] ); ?></small></em></p> <?php endif; ?> </td> <td> <?php if ( $report['reported_by']['admin_url'] ): ?> <a href="<?php echo esc_url( $report['reported_by']['admin_url'] ); ?>" target="_blank"> <?php echo esc_html( $report['reported_by']['name'] ); ?> </a> <?php else: ?> <?php echo esc_html( $report['reported_by']['name'] ); ?> <<?php echo esc_html( $report['reported_by']['email'] ); ?>> <?php endif; ?> </td> <td> <?php echo date( $date_format . ' ' . $time_format, strtotime( $report['reported_at'] ) ); ?> </td> <td> <button type="button" class="button button-small dokan-report-abuse-admin-single-product-delete-item" data-id="<?php echo esc_attr( $report['id'] ); ?>"> <i class="fa fa-trash"></i> <?php esc_html_e( 'Delete', 'dokan' ); ?> </button> </td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> <tfoot> <tr> <th><?php esc_html_e( 'Reason', 'dokan' ); ?></th> <th><?php esc_html_e( 'Reported by', 'dokan' ); ?></th> <th><?php esc_html_e( 'Reported at', 'dokan' ); ?></th> <th class="action-column"></th> </tr> </tfoot> </table> </fieldset>
[+]
..
[-] .views.php
[edit]
[-] report-abuse-admin-email-html.php
[edit]
[-] report-form-popup.php
[edit]
[-] report-abuse-admin-single-product.php
[edit]
[-] report-form.php
[edit]
[-] report-button.php
[edit]