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\Students_List; use TUTOR\Input; $students = new Students_List(); /** * Short able params */ $user_id = Input::get( 'user_id', '' ); $course_id = Input::get( 'course-id', '' ); $order = Input::get( 'order', 'DESC' ); $date = Input::has( 'date' ) ? tutor_get_formated_date( 'Y-m-d', Input::get( 'date' ) ) : ''; $search = Input::get( 'search', '' ); /** * 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; $students_list = tutor_utils()->get_students( $offset, $per_page, $search, $course_id, $date, $order ); $total = tutor_utils()->get_total_students( $search, $course_id, $date ); /** * Navbar data to make nav menu */ $navbar_data = array( 'page_title' => $students->page_title, ); /** * Bulk action & filters */ $filters = array( 'bulk_action' => tutor_utils()->has_user_role( 'administrator' ) ? $students->bulk_action : false, 'bulk_actions' => $students->prpare_bulk_actions(), 'ajax_action' => 'tutor_student_bulk_action', 'filters' => true, 'course_filter' => true, ); ?>
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 ); ?>
user_registered; ?>
get_tutor_avatar( $list->ID ), tutor_utils()->allowed_avatar_tags() ); ?> display_name ); ?>
user_email ); ?> ID ); ?>
get_local_time_from_unix( $list->user_registered ) ) : '' ); ?> get_enrolled_courses_ids_by_user( $list->ID ); ?> has_pro ) : ?>
ID ); ?>
tutor_empty_state( tutor_utils()->not_found_text() ); ?>
$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 ); } ?>