PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-lite
/
templates
/
withdraw
<?php /** * Dokan Withdraw Pending Request Listing Template * * @since 2.4 * * @package dokan */ if ( $withdraw_requests ) { ?> <table class="dokan-table dokan-table-striped"> <tr> <th><?php esc_html_e( 'Amount', 'dokan-lite' ); ?></th> <th><?php esc_html_e( 'Method', 'dokan-lite' ); ?></th> <th><?php esc_html_e( 'Date', 'dokan-lite' ); ?></th> <th><?php esc_html_e( 'Cancel', 'dokan-lite' ); ?></th> <th><?php esc_html_e( 'Status', 'dokan-lite' ); ?></th> </tr> <?php foreach ( $withdraw_requests as $request ) { ?> <tr> <td><?php echo wp_kses_post( wc_price( $request->amount ) ); ?></td> <td><?php echo esc_html( dokan_withdraw_get_method_title( $request->method ) ); ?></td> <td><?php echo esc_html( dokan_format_time( $request->date ) ); ?></td> <td> <?php $url = add_query_arg( array( 'dokan_handle_withdraw_request' => 'cancel', 'id' => $request->id ), dokan_get_navigation_url( 'withdraw' ) ); ?> <a href="<?php echo esc_url( wp_nonce_url( $url, 'dokan_cancel_withdraw' ) ); ?>"> <?php esc_html_e( 'Cancel', 'dokan-lite' ); ?> </a> </td> <td> <?php if ( $request->status == 0 ) { echo '<span class="label label-danger">' . esc_html__( 'Pending Review', 'dokan-lite' ) . '</span>'; } elseif ( $request->status == 1 ) { echo '<span class="label label-warning">' . esc_html__( 'Accepted', 'dokan-lite' ) . '</span>'; } ?> </td> </tr> <?php } ?> </table> <?php }
[+]
..
[-] pending-request-listing.php
[edit]
[-] status-listing.php
[edit]
[-] .withdraw.php
[edit]
[-] header.php
[edit]
[-] request-form.php
[edit]
[-] cancelled-request-listing.php
[edit]
[-] withdraw.php
[edit]
[-] approved-request-listing.php
[edit]