1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<div class="row ">
<div class="col-xl-12">
<div class="card">
<div class="card-body">
<h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('courses'); ?>
<a href="<?php echo site_url('user/course_form/add_course'); ?>" class="btn btn-outline-primary btn-rounded alignToTitle"><i class="mdi mdi-plus"></i><?php echo get_phrase('add_new_course'); ?></a>
</h4>
</div> <!-- end card body-->
</div> <!-- end card -->
</div><!-- end col-->
</div>
<div class="row">
<div class="col-12">
<div class="card widget-inline">
<div class="card-body p-0">
<div class="row no-gutters">
<div class="col">
<a href="<?php echo site_url('user/courses'); ?>" class="text-secondary">
<div class="card shadow-none m-0">
<div class="card-body text-center">
<i class="dripicons-link text-muted" style="font-size: 24px;"></i>
<h3><span>
<?php
$active_courses = $this->crud_model->get_status_wise_courses_for_instructor('active');
echo $active_courses->num_rows();
?>
</span></h3>
<p class="text-muted font-15 mb-0"><?php echo get_phrase('active_courses'); ?></p>
</div>
</div>
</a>
</div>
<div class="col">
<a href="<?php echo site_url('user/courses'); ?>" class="text-secondary">
<div class="card shadow-none m-0 border-left">
<div class="card-body text-center">
<i class="dripicons-link-broken text-muted" style="font-size: 24px;"></i>
<h3><span>
<?php
$pending_courses = $this->crud_model->get_status_wise_courses_for_instructor('pending');
echo $pending_courses->num_rows();
?>
</span></h3>
<p class="text-muted font-15 mb-0"><?php echo get_phrase('pending_courses'); ?></p>
</div>
</div>
</a>
</div>
<div class="col">
<a href="<?php echo site_url('user/courses'); ?>" class="text-secondary">
<div class="card shadow-none m-0 border-left">
<div class="card-body text-center">
<i class="dripicons-bookmark text-muted" style="font-size: 24px;"></i>
<h3><span>
<?php
$draft_courses = $this->crud_model->get_status_wise_courses_for_instructor('draft');
echo $draft_courses->num_rows();
?>
</span></h3>
<p class="text-muted font-15 mb-0"><?php echo get_phrase('draft_courses'); ?></p>
</div>
</div>
</a>
</div>
<div class="col">
<a href="<?php echo site_url('user/courses'); ?>" class="text-secondary">
<div class="card shadow-none m-0 border-left">
<div class="card-body text-center">
<i class="dripicons-star text-muted" style="font-size: 24px;"></i>
<h3><span><?php echo $this->crud_model->get_free_and_paid_courses('free', $this->session->userdata('user_id'))->num_rows(); ?></span></h3>
<p class="text-muted font-15 mb-0"><?php echo get_phrase('free_courses'); ?></p>
</div>
</div>
</a>
</div>
<div class="col">
<a href="<?php echo site_url('user/courses'); ?>" class="text-secondary">
<div class="card shadow-none m-0 border-left">
<div class="card-body text-center">
<i class="dripicons-tags text-muted" style="font-size: 24px;"></i>
<h3><span><?php echo $this->crud_model->get_free_and_paid_courses('paid', $this->session->userdata('user_id'))->num_rows(); ?></span></h3>
<p class="text-muted font-15 mb-0"><?php echo get_phrase('paid_courses'); ?></p>
</div>
</div>
</a>
</div>
</div> <!-- end row -->
</div>
</div> <!-- end card-box-->
</div> <!-- end col-->
</div>
<div class="row">
<div class="col-xl-12">
<div class="card">
<div class="card-body">
<h4 class="mb-3 header-title"><?php echo get_phrase('course_list'); ?></h4>
<form class="row justify-content-center" action="<?php echo site_url('user/courses'); ?>" method="get">
<!-- Course Categories -->
<div class="col-xl-3">
<div class="form-group">
<label for="category_id"><?php echo get_phrase('categories'); ?></label>
<select class="form-control select2" data-toggle="select2" name="category_id" id="category_id">
<option value="<?php echo 'all'; ?>" <?php if($selected_category_id == 'all') echo 'selected'; ?>><?php echo get_phrase('all'); ?></option>
<?php foreach ($categories->result_array() as $category): ?>
<optgroup label="<?php echo $category['name']; ?>">
<?php $sub_categories = $this->crud_model->get_sub_categories($category['id']);
foreach ($sub_categories as $sub_category): ?>
<option value="<?php echo $sub_category['id']; ?>" <?php if($selected_category_id == $sub_category['id']) echo 'selected'; ?>><?php echo $sub_category['name']; ?></option>
<?php endforeach; ?>
</optgroup>
<?php endforeach; ?>
</select>
</div>
</div>
<!-- Course Status -->
<div class="col-xl-3">
<div class="form-group">
<label for="status"><?php echo get_phrase('status'); ?></label>
<select class="form-control select2" data-toggle="select2" name="status" id = 'status'>
<option value="all" <?php if($selected_status == 'all') echo 'selected'; ?>><?php echo get_phrase('all'); ?></option>
<option value="active" <?php if($selected_status == 'active') echo 'selected'; ?>><?php echo get_phrase('active'); ?></option>
<option value="pending" <?php if($selected_status == 'pending') echo 'selected'; ?>><?php echo get_phrase('pending'); ?></option>
</select>
</div>
</div>
<!-- Course Price -->
<div class="col-xl-3">
<div class="form-group">
<label for="price"><?php echo get_phrase('price'); ?></label>
<select class="form-control select2" data-toggle="select2" name="price" id = 'price'>
<option value="all" <?php if($selected_price == 'all' ) echo 'selected'; ?>><?php echo get_phrase('all'); ?></option>
<option value="free" <?php if($selected_price == 'free') echo 'selected'; ?>><?php echo get_phrase('free'); ?></option>
<option value="paid" <?php if($selected_price == 'paid') echo 'selected'; ?>><?php echo get_phrase('paid'); ?></option>
</select>
</div>
</div>
<div class="col-xl-3">
<label for=".." class="text-white"><?php echo get_phrase('..'); ?></label>
<button type="submit" class="btn btn-primary btn-block" name="button"><?php echo get_phrase('filter'); ?></button>
</div>
</form>
<div class="table-responsive-sm mt-4">
<?php if (count($courses) > 0): ?>
<table id="course-datatable-server-side" class="table table-striped dt-responsive nowrap" width="100%" data-page-length='25'>
<thead>
<tr>
<th>#</th>
<th><?php echo get_phrase('title'); ?></th>
<th><?php echo get_phrase('category'); ?></th>
<th><?php echo get_phrase('lesson_and_section'); ?></th>
<th><?php echo get_phrase('enrolled_student'); ?></th>
<th><?php echo get_phrase('status'); ?></th>
<th><?php echo get_phrase('price'); ?></th>
<th><?php echo get_phrase('actions'); ?></th>
</tr>
</thead>
</table>
<?php endif; ?>
<?php if (count($courses) == 0): ?>
<div class="img-fluid w-100 text-center">
<img style="opacity: 1; width: 100px;" src="<?php echo base_url('assets/backend/images/file-search.svg'); ?>"><br>
<?php echo get_phrase('no_data_found'); ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>