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 2.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } use Tutor\Ecommerce\Ecommerce; use Tutor\Ecommerce\OrderController; use Tutor\Helpers\DateTimeHelper; use TUTOR\Input; /** * Determine active tab */ $active_tab = Input::get( 'data', 'all' ); $paged_filter = Input::get( 'paged', 1, Input::TYPE_INT ); $limit = (int) tutor_utils()->get_option( 'pagination_per_page', 10 ); $offset = ( $limit * $paged_filter ) - $limit; $order_controller = new OrderController(); $get_orders = $order_controller->get_orders( $limit, $offset ); $orders = $get_orders['results']; $total_items = $get_orders['total_count']; $add_course_url = esc_url( admin_url( 'admin.php?page=create-course' ) ); $navbar_data = array( 'page_title' => $order_controller->page_title, 'tabs' => $order_controller->tabs_key_value(), 'active' => $active_tab, 'add_button' => false, 'button_title' => __( 'Add New', 'tutor' ), 'button_url' => $add_course_url, ); /** * Bulk action & filters */ $filters = array( 'bulk_action' => true, 'bulk_actions' => $order_controller->prepare_bulk_actions(), 'ajax_action' => 'tutor_order_bulk_action', 'filters' => true, ); $available_status = array( 'publish' => array( __( 'Publish', 'tutor' ), 'select-success' ), 'pending' => array( __( 'Pending', 'tutor' ), 'select-warning' ), 'trash' => array( __( 'Trash', 'tutor' ), 'select-danger' ), 'draft' => array( __( 'Draft', 'tutor' ), 'select-default' ), 'private' => array( __( 'Private', 'tutor' ), 'select-default' ), ); ?>
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 ); ?>
$order ) : //phpcs:ignore $user_data = get_userdata( $order->user_id ); ?>
id ); ?>
get_tutor_avatar( $user_data, 'sm' ), tutor_utils()->allowed_avatar_tags() ) ?>
created_at_gmt ) ); ?>
payment_method ?? '' ) ); ?> transaction_id ) ) : ?>
transaction_id ) ); ?>
translate_dynamic_text( $order->payment_status, true ) ); ?> translate_dynamic_text( $order->order_status, true ) ); ?> tutor_price( $order->total_price ) ); ?>
tutor_empty_state( tutor_utils()->not_found_text() ); ?>
$limit ) { $pagination_data = array( 'total_items' => $total_items, 'per_page' => $limit, 'paged' => $paged_filter, ); $pagination_template = tutor()->path . 'views/elements/pagination.php'; tutor_load_template_from_custom_path( $pagination_template, $pagination_data ); } ?>
path . 'views/elements/common-confirm-popup.php', array( 'message' => __( 'Deletion of the course will erase all its topics, lessons, quizzes, events, and other information. Please confirm your choice.', 'tutor' ), ) );