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,
);
?>