Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 107

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 234

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 235

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 236

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 237

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 238

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 239
* @link https://themeum.com * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } use TUTOR\Input; use Tutor\Models\WithdrawModel; use TUTOR\Withdraw_Requests_List; $withdraw = new Withdraw_Requests_List(); //phpcs:disable WordPress.WP.GlobalVariablesOverride.Prohibited $order = Input::get( 'order', 'DESC' ); $date = Input::has( 'date' ) ? tutor_get_formated_date( 'Y-m-d', Input::get( 'date' ) ) : ''; $search_term = Input::get( 'search', '' ); /** * Determine active tab */ $active_tab = Input::get( 'data', 'all' ); /** * Pagination data */ $paged = Input::get( 'paged', 1, Input::TYPE_INT ); $per_page = tutor_utils()->get_option( 'pagination_per_page' ); $offset = ( $per_page * $paged ) - $per_page; $args = array( 'status' => 'all' === $active_tab ? '' : $active_tab, 'date' => $date, 'order' => $order, 'search' => $search_term, ); $withdraw_list = WithdrawModel::get_withdrawals_history( null, $args, $offset, $per_page ); $total = $withdraw_list->count; /** * Navbar data to make nav menu */ $navbar_data = array( 'page_title' => $withdraw->page_title, 'tabs' => $withdraw->tabs_key_value( $date, $search_term ), 'active' => $active_tab, ); /** * Bulk action & filters */ $filters = array( 'bulk_action' => false, 'filters' => true, 'course_filter' => false, ); //phpcs:enable WordPress.WP.GlobalVariablesOverride.Prohibited ?>
path . 'views/elements/navbar.php'; $filters_template = tutor()->path . 'views/elements/filters.php'; tutor_load_template_from_custom_path( $navbar_template, $navbar_data ); tutor_load_template_from_custom_path( $filters_template, $filters ); ?>
results ) && count( $withdraw_list->results ) ) : ?> results as $list ) : ?> user_id ); $details = unserialize( $list->method_data ); $alert = ( 'pending' == $list->status ? 'warning' : ( 'rejected' === $list->status ? 'danger' : ( 'approved' === $list->status ? 'success' : 'default' ) ) ); $data_name = isset( $details['account_name']['value'] ) ? $details['account_name']['value'] : $user_data->display_name; if ( ! $details ) { continue; } ?>
created_at ) ); ?>,
created_at ) ); ?>
get_tutor_avatar( $user_data->ID ), tutor_utils()->allowed_avatar_tags() ); ?>
display_name ); ?>
user_email ); ?>
  • asterisks_center_text( $details['account_number']['value'] ) ); ?>
  • asterisks_center_text( $details['iban']['value'] ) ); ?>
asterisks_email( $details['paypal_email']['value'] ) : '' ); ?>
Copy
tutor_price( $list->amount ); //phpcs:ignore ?>
translate_dynamic_text( $list->status ) ); ?>
status ) : ?>
status ) : ?>
updated_at ? tutor_get_formated_date( get_option( 'date_format' ), $list->updated_at ) : '' ); ?>,
updated_at ? tutor_get_formated_date( get_option( 'time_format' ), $list->updated_at ) : '' ); ?>
status ) : ?>
updated_at ? tutor_get_formated_date( get_option( 'date_format' ), $list->updated_at ) : '' ); ?>,
updated_at ? tutor_get_formated_date( get_option( 'time_format' ), $list->updated_at ) : '' ); ?>
updated_at ? tutor_get_formated_date( get_option( 'date_format' ), $list->updated_at ) : '' ); ?>
updated_at ? tutor_get_formated_date( get_option( 'time_format' ), $list->updated_at ) : '' ); ?>
tutor_empty_state( __( 'No request found', 'tutor' ) ); ?>
$per_page ) { $pagination_data = array( 'total_items' => $total, 'per_page' => $per_page, 'paged' => $paged, ); $pagination_template = tutor()->path . 'views/elements/pagination.php'; tutor_load_template_from_custom_path( $pagination_template, $pagination_data ); } ?>