%PDF- %PDF-
Direktori : /home/jalalj2hb/www/elearning/application/views/frontend/default/ |
Current File : /home/jalalj2hb/www/elearning/application/views/frontend/default/cart_items.php |
<?php $total_price = 0; ?> <div class="icon"> <a href="javascript::" onclick="showCartPage()"><i class="fas fa-shopping-cart"></i></a> <span class="number"><?php echo sizeof($this->session->userdata('cart_items')); ?></span> </div> <!-- Cart Dropdown goes here --> <div class="dropdown course-list-dropdown corner-triangle top-right" style="display: none;"> <!-- Just remove the display none from the css to make it work --> <div class="list-wrapper"> <div class="item-list"> <ul> <?php 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="item clearfix"> <div class="item-image"> <a href=""> <img src="<?php echo $this->crud_model->get_course_thumbnail_url($cart_item);?>" alt="" class="img-fluid"> </a> </div> <div class="item-details"> <a href=""> <div class="course-name"><?php echo $course_details['title']; ?></div> <div class="instructor-name"><?php echo $instructor_details['first_name'].' '.$instructor_details['last_name']; ?></div> <div class="item-price"> <?php if ($course_details['discount_flag'] == 1): $total_price += $course_details['discounted_price'];?> <span class="current-price"><?php echo currency($course_details['discounted_price']); ?></span> <span class="original-price"><?php echo currency($course_details['price']); ?></span> <?php else: $total_price += $course_details['price'];?> <span class="current-price"><?php echo currency($course_details['price']); ?></span> <?php endif; ?> </div> </a> </div> </div> </li> <?php endforeach; ?> </ul> </div> <div class="dropdown-footer"> <div class="cart-total-price clearfix"> <span><?php echo site_phrase('total'); ?>:</span> <div class="float-right"> <span class="current-price"><?php echo currency($total_price); ?></span> <!-- <span class="original-price">$94.99</span> --> </div> </div> <a href = "<?php echo site_url('home/shopping_cart'); ?>"><?php echo site_phrase('go_to_cart'); ?></a> </div> </div> <div class="empty-box text-center d-none"> <p><?php echo site_phrase('your_cart_is_empty') ?>.</p> <a href="">Keep Shopping</a> </div> </div> <script type="text/javascript"> function showCartPage() { window.location.replace("<?php echo site_url('home/shopping_cart'); ?>"); } </script>