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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<section class="page-header-area">
<div class="container">
<div class="row">
<div class="col">
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="<?php echo site_url('home'); ?>"><i class="fas fa-home"></i></a></li>
<li class="breadcrumb-item"><a href="#"><?php echo get_phrase('shopping_cart'); ?></a></li>
</ol>
</nav>
<h1 class="page-title"><?php echo get_phrase('shopping_cart'); ?></h1>
</div>
</div>
</div>
</section>
<section class="cart-list-area">
<div class="container">
<div class="row" id = "cart_items_details">
<div class="col-lg-9">
<div class="in-cart-box">
<div class="title"><?php echo sizeof($this->session->userdata('cart_items')).' '.get_phrase('courses_in_cart'); ?></div>
<div class="">
<ul class="cart-course-list">
<?php
$actual_price = 0;
$total_price = 0;
foreach ($this->session->userdata('cart_items') as $cart_item):
$course_details = $this->crud_model->get_course_by_id($cart_item)->row_array();
$instructor_details = $this->user_model->get_all_user($course_details['user_id'])->row_array();
?>
<li>
<div class="cart-course-wrapper">
<div class="image">
<a href="<?php echo site_url('home/course/'.slugify($course_details['title']).'/'.$course_details['id']); ?>">
<img src="<?php echo $this->crud_model->get_course_thumbnail_url($cart_item);?>" alt="" class="img-fluid">
</a>
</div>
<div class="details">
<a href="<?php echo site_url('home/course/'.slugify($course_details['title']).'/'.$course_details['id']); ?>">
<div class="name"><?php echo $course_details['title']; ?></div>
</a>
<a href="<?php echo site_url('home/instructor_page/'.$instructor_details['id']); ?>">
<div class="instructor">
<?php echo get_phrase('by'); ?>
<span class="instructor-name"><?php echo $instructor_details['first_name'].' '.$instructor_details['last_name']; ?></span>,
</div>
</a>
</div>
<div class="move-remove">
<div id = "<?php echo $course_details['id']; ?>" onclick="removeFromCartList(this)"><?php echo get_phrase('remove'); ?></div>
<!-- <div>Move to Wishlist</div> -->
</div>
<div class="price">
<a href="">
<?php if ($course_details['discount_flag'] == 1): ?>
<div class="current-price">
<?php
$total_price += $course_details['discounted_price'];
echo currency($course_details['discounted_price']);
?>
</div>
<div class="original-price">
<?php
$actual_price += $course_details['price'];
echo currency($course_details['price']);
?>
</div>
<?php else: ?>
<div class="current-price">
<?php
$actual_price += $course_details['price'];
$total_price += $course_details['price'];
echo currency($course_details['price']);
?>
</div>
<?php endif; ?>
<span class="coupon-tag">
<i class="fas fa-tag"></i>
</span>
</a>
</div>
</div>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="cart-sidebar">
<div class="total"><?php echo get_phrase('total'); ?>:</div>
<span id = "total_price_of_checking_out" hidden><?php echo $total_price; ?></span>
<div class="total-price"><?php echo currency($total_price); ?></div>
<div class="total-original-price">
<span class="original-price"><?php echo currency($actual_price); ?></span>
<!-- <span class="discount-rate">95% off</span> -->
</div>
<button type="button" class="btn btn-primary btn-block checkout-btn" onclick="handleCheckOut()"><?php echo get_phrase('checkout'); ?></button>
</div>
</div>
</div>
</div>
</section>
<script src="https://www.paypalobjects.com/js/external/dg.js"></script>
<script>
var dgFlow = new PAYPAL.apps.DGFlow({ trigger: 'submitBtn' });
dgFlow = top.dgFlow || top.opener.top.dgFlow;
dgFlow.closeFlow();
// top.close();
</script>
<script type="text/javascript">
function removeFromCartList(elem) {
url1 = '<?php echo site_url('home/handleCartItems');?>';
url2 = '<?php echo site_url('home/refreshWishList');?>';
url3 = '<?php echo site_url('home/refreshShoppingCart');?>';
$.ajax({
url: url1,
type : 'POST',
data : {course_id : elem.id},
success: function(response)
{
$('#cart_items').html(response);
if ($(elem).hasClass('addedToCart')) {
$('.big-cart-button-'+elem.id).removeClass('addedToCart')
$('.big-cart-button-'+elem.id).text("<?php echo get_phrase('add_to_cart'); ?>");
}else {
$('.big-cart-button-'+elem.id).addClass('addedToCart')
$('.big-cart-button-'+elem.id).text("<?php echo get_phrase('added_to_cart'); ?>");
}
$.ajax({
url: url2,
type : 'POST',
success: function(response)
{
$('#wishlist_items').html(response);
}
});
$.ajax({
url: url3,
type : 'POST',
success: function(response)
{
$('#cart_items_details').html(response);
}
});
}
});
}
function handleCheckOut() {
$.ajax({
url: '<?php echo site_url('home/isLoggedIn');?>',
success: function(response)
{
if (!response) {
window.location.replace("<?php echo site_url('login'); ?>");
}else {
$('#paymentModal').modal('show');
$('.total_price_of_checking_out').val($('#total_price_of_checking_out').text());
}
}
});
}
function handleCartItems(elem) {
url1 = '<?php echo site_url('home/handleCartItems');?>';
url2 = '<?php echo site_url('home/refreshWishList');?>';
url3 = '<?php echo site_url('home/refreshShoppingCart');?>';
$.ajax({
url: url1,
type : 'POST',
data : {course_id : elem.id},
success: function(response)
{
$('#cart_items').html(response);
if ($(elem).hasClass('addedToCart')) {
$('.big-cart-button-'+elem.id).removeClass('addedToCart')
$('.big-cart-button-'+elem.id).text("<?php echo get_phrase('add_to_cart'); ?>");
}else {
$('.big-cart-button-'+elem.id).addClass('addedToCart')
$('.big-cart-button-'+elem.id).text("<?php echo get_phrase('added_to_cart'); ?>");
}
$.ajax({
url: url2,
type : 'POST',
success: function(response)
{
$('#wishlist_items').html(response);
}
});
$.ajax({
url: url3,
type : 'POST',
success: function(response)
{
$('#cart_items_details').html(response);
}
});
}
});
}
</script>