ok
Direktori : /proc/self/root/home2/selectio/www/geniusgroove.in/crm/application/views/user/route/ |
Current File : //proc/self/root/home2/selectio/www/geniusgroove.in/crm/application/views/user/route/index.php |
<div class="content-wrapper"> <section class="content"> <div class="row"> <div class="col-md-12"> <div class="box box-primary"> <div class="box-header ptbnull"> <h3 class="box-title titlefix"> <?php echo $this->lang->line('transport_routes'); ?></h3> <div class="box-tools pull-right"> </div> </div> <div class="box-body"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12"> <div class="row"> <div class="col-lg-2 col-md-2 col-sm-3"> <?php if($listroute['vehicle_photo']){ ?> <img class="route-bus-icon" src="<?php echo base_url();?>/uploads/vehicle_photo/<?php echo $listroute['vehicle_photo']; ?>" alt="User profile picture"> <?php }else{ ?> <div class="route-bus-icon"><i class="fa fa-bus"></i></div> <?php } ?> </div> <div class="col-lg-10 col-md-10 col-sm-9"> <h4 class="mt0"><b><?php echo $this->lang->line('route_title'); ?>: <?php echo $listroute['route_title']; ?></b></h4> <div class="row"> <div class="col-lg-4 col-md-4 col-sm-4"> <div class="route-text"><b><?php echo $this->lang->line('vehicle_number'); ?>: </b><span><?php echo $listroute['vehicle_no']; ?></span></div> </div> <div class="col-lg-4 col-md-4 col-sm-4"> <div class="route-text"><b><?php echo $this->lang->line('vehicle_model'); ?>: </b><span><?php echo $listroute['vehicle_model']; ?></span></div> </div> <div class="col-lg-4 col-md-4 col-sm-4"> <div class="route-text"><b><?php echo $this->lang->line('made'); ?>: </b><span><?php echo $listroute['manufacture_year']; ?></span></div> </div> <div class="col-lg-4 col-md-4 col-sm-4"> <div class="route-text"><b><?php echo $this->lang->line('driver_name'); ?>: </b><span><?php echo $listroute['driver_name']; ?></span></div> </div> <div class="col-lg-4 col-md-4 col-sm-4"> <div class="route-text"><b><?php echo $this->lang->line('driver_license'); ?>: </b><span><?php echo $listroute['driver_licence']; ?></span></div> </div> <div class="col-lg-4 col-md-4 col-sm-4"> <div class="route-text"><b><?php echo $this->lang->line('driver_contact'); ?>: </b><span><?php echo $listroute['driver_contact']; ?></span></div> </div> </div> </div> </div> </div> <div class="col-lg-12"> <div class="route-wrap"> <h4 class="title-route-h4"><b><?php echo $this->lang->line('pickup_point_list'); ?></b></h4> <section class="timeline-route"> <ol> <?php if (!empty($listroute['pickup_point'])) { foreach ($listroute['pickup_point'] as $pickup_point_value) { if ($listroute['pickup_point_name'] == $pickup_point_value['pickup_point']) { $class = 'active'; } else { $class = ''; } ?> <li class="<?php echo $class; ?>"> <div class="<?php echo $class; ?>"> <h4 class="timeline-title"><?php echo $pickup_point_value['pickup_point']; ?></h4> <p><i class="fa fa-tachometer timeline-icon-width"></i> <?php echo $this->lang->line('distance_km'); ?>: <?php echo $pickup_point_value['destination_distance']; ?></p> <p><i class="fa fa-clock-o timeline-icon-width"></i> <?php echo $this->lang->line('pickup_time'); ?>: <?php echo $this->customlib->timeFormat($pickup_point_value['pickup_time'], $this->customlib->getSchoolTimeFormat()); ?></p> </div> </li> <?php }}?> <li></li> </ol> <div class="arrows"> <button class="arrow arrow__prev disabled" disabled><i class="fa fa-angle-left"></i></button> <button class="arrow arrow__next"><i class="fa fa-angle-right"></i></button> </div> </section> </div> </div> </div><!--./row--> </div> </div> </div> </div> </section> </div> <script type="text/javascript" src="<?php echo base_url(); ?>backend/dist/js/hammer.min.js"></script> <script type="text/javascript"> (function() { const timeline = document.querySelector(".timeline-route ol"), elH = document.querySelectorAll(".timeline-route li > div"), arrows = document.querySelectorAll(".timeline-route .arrows .arrow"), arrowPrev = document.querySelector(".timeline-route .arrows .arrow__prev"), arrowNext = document.querySelector(".timeline-route .arrows .arrow__next"), firstItem = document.querySelector(".timeline-route li:first-child"), lastItem = document.querySelector(".timeline-route li:last-child"), xScrolling = 280, disabledClass = "disabled"; window.addEventListener("load", init); function init() { setEqualHeights(elH); animateTl(xScrolling, arrows, timeline); setSwipeFn(timeline, arrowPrev, arrowNext); setKeyboardFn(arrowPrev, arrowNext); } // SET EQUAL HEIGHTS function setEqualHeights(el) { let counter = 0; for (let i = 0; i < el.length; i++) { const singleHeight = el[i].offsetHeight; if (counter < singleHeight) { counter = singleHeight; } } for (let i = 0; i < el.length; i++) { el[i].style.height = `${counter}px`; } } function isElementInViewport(el) { const rect = el.getBoundingClientRect(); return ( rect.top >= 0 && rect.left >= 0 && rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && rect.right <= (window.innerWidth || document.documentElement.clientWidth) ); } function setBtnState(el, flag = true) { if (flag) { el.classList.add(disabledClass); } else { if (el.classList.contains(disabledClass)) { el.classList.remove(disabledClass); } el.disabled = false; } } function animateTl(scrolling, el, tl) { let counter = 0; for (let i = 0; i < el.length; i++) { el[i].addEventListener("click", function() { if (!arrowPrev.disabled) { arrowPrev.disabled = true; } if (!arrowNext.disabled) { arrowNext.disabled = true; } const sign = (this.classList.contains("arrow__prev")) ? "" : "-"; if (counter === 0) { tl.style.transform = `translateX(-${scrolling}px)`; } else { const tlStyle = getComputedStyle(tl); const tlTransform = tlStyle.getPropertyValue("-webkit-transform") || tlStyle.getPropertyValue("transform"); const values = parseInt(tlTransform.split(",")[4]) + parseInt(`${sign}${scrolling}`); tl.style.transform = `translateX(${values}px)`; } setTimeout(() => { isElementInViewport(firstItem) ? setBtnState(arrowPrev) : setBtnState(arrowPrev, false); isElementInViewport(lastItem) ? setBtnState(arrowNext) : setBtnState(arrowNext, false); }, 1100); counter++; }); } } function setSwipeFn(tl, prev, next) { const hammer = new Hammer(tl); hammer.on("swipeleft", () => next.click()); hammer.on("swiperight", () => prev.click()); } function setKeyboardFn(prev, next) { document.addEventListener("keydown", (e) => { if ((e.which === 37) || (e.which === 39)) { const timelineOfTop = timeline.offsetTop; const y = window.pageYOffset; if (timelineOfTop !== y) { window.scrollTo(0, timelineOfTop); } if (e.which === 37) { prev.click(); } else if (e.which === 39) { next.click(); } } }); } })(); </script>