HOME


Mini Shell 1.0
DIR: /home/islapiiu/sites/forbes/contact-form/img/
Upload File :
Current File : /home/islapiiu/sites/forbes/contact-form/img/view-tours.php.tar
home/islapiiu/sites/taxigalle/view-tours.php000064400000017664150764710600015275 0ustar00<?php
include './class/include.php';
$id = '';

$id = $_GET['id'];

$TOUR_PACKAGE = new TourPackage($id); 
?>
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="description" content="">
    <meta name="author" content="">
    <title><?php echo $TOUR_PACKAGE->title; ?> | Taxi Galle</title>

    <!-- Bootstrap -->
    <link href="common/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css">
    <!-- Owl Carousel -->
    <link href="common/owl-carousel/css/owl.carousel.min.css" rel="stylesheet" type="text/css">
    <!-- Fancybox -->
    <link rel="stylesheet" href="common/fancybox/jquery.fancybox.min.css" type="text/css" />
    <!-- Theme Style -->
    <link href="css/style.css" rel="stylesheet" type="text/css">
    <!-- Custom Style -->
    <link href="css/custom.css" rel="stylesheet" type="text/css">
    <style>
    .banner-home {
        background: url(./images/banner/back_dark.jpg) top center no-repeat !important;

        background-size: cover;
    }

    .header-bottom {
        background: rgba(0, 0, 0, 0.5);

    }

    header.header-small {
        background: #000;

    }

    .search-section .tab-sec .nav-tabs .nav-link {
        padding: 19px 24px 10px 25px;
    }
    </style>
</head>

<body>
    <!--Header area start here-->
    <?php
            include('./header.php');
            ?>

    <!-- Pagewrap Start Here -->
    <div class="content">
        <section class="tour-banner inner-banner">
            <div class="banner-box">
                <h1><?php echo $TOUR_PACKAGE->title; ?></h1>

            </div>
        </section>

        <section class="latest-news-details sec-pd inner-pd">
            <div class="container">
                <div class="row">


                    <div class="col-md-8 col-sm-12 " style="margin-bottom: 10px">
                        <?php
                                $TOUR_DATE = new TourDate(NULL);
                                foreach ($TOUR_DATE->getTourDatesById($TOUR_PACKAGE->id) as $tourdate) {
                                    ?>
                        <div class="width-responsive">
                            <div class="single-package-title">
                                <h3><?php echo $tourdate['title']; ?></h3>
                            </div>
                            <div class="tab-content" style="margin-bottom:25px;">
                                <div class="row" style="margin-left: 0px;">
                                    <div class="">
                                        <div class="tour-description">
                                            <?php echo $tourdate['description']; ?>
                                        </div>
                                        <div class="row">
                                            <?php
                                                        $TOUR_DATE_PHOTO = new TourDatePhoto(NULL);
                                                        foreach ($TOUR_DATE_PHOTO->getTourDatePhotosById($tourdate['id']) as $tour_date_photo) {
                                                            ?>
                                            <div class="col-md-3">
                                                <div class="dlab-box" style="margin-top: 20px;">
                                                    <a data-fancybox="gallery"
                                                        href="upload/tour-package/date/gallery/<?php echo $tour_date_photo ['image_name']; ?>"
                                                        class="big"><img
                                                            src="upload/tour-package/date/gallery/thumb/<?php echo $tour_date_photo ['image_name']; ?>"
                                                            alt=""></a>
                                                    <div class=""></div>
                                                </div>
                                            </div>

                                            <?php
                                                        }
                                                        ?>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <?php
                                }
                                ?>
                    </div>



                    <!-- End Right Column -->
                    <div class="col-md-4" style="margin-top: 29px;">
                        <div class="news-right">

                            <div class="popular-news">

                                <ul>
                                    <?php
                                            $TOUR_PACKAGE1 = new TourPackage(NULL);
                                            foreach ($TOUR_PACKAGE1->all() as $key => $tour_package1) {
                                                if ($key < 7) {
                                                    ?>
                                    <li>
                                        <a href="view-tours.php?id=<?php echo $tour_package1['id'] ?>">
                                            <div class="news">
                                                <div class="img-ar">
                                                    <img src="upload/tour-package/<?php echo $tour_package1['image_name']; ?>"
                                                        alt="News Right" width="100" height="100">
                                                </div>
                                                <div class="text-ar">
                                                    <h4><?php echo $tour_package1['title']; ?></h4>
                                                    <p><?php echo substr($tour_package1['description'], 0, 50) . '..'; ?>
                                                    </p>
                                                </div>
                                            </div>
                                        </a>
                                    </li>
                                    <?php
                                                }
                                            }
                                            ?>
                                </ul>

                                <!--                                      <div class="row">

                                            <div class="col-md-6">
                                                
                                                    <div class="offer-action">
                                                        <a href="./tour-packages.php?type=<?php echo $TOUR_TYPE->id ?>">
                                                            <div class="offer-btn-1">View More</div>
                                                        </a>
                                                    </div>
                                                  
                                            </div>

                                        </div>-->
                            </div>

                        </div>
                    </div>
                </div>
            </div>
        </section>
        <?php
                include('./footer.php');
                ?>
    </div>
    <!-- Pagewrap End Here-->
    <!-- jQuery (necessary for JavaScript plugins) -->
    <script src="js/jquery.min.js"></script>
    <!-- Bootsrap JS -->
    <script src="common/bootstrap/js/bootstrap.min.js"></script>
    <!-- Owl Crousel -->
    <script src="common/owl-carousel/js/owl.carousel.js"></script>
    <!-- Fancybox -->
    <script src="common/fancybox/jquery.fancybox.min.js"></script>
    <!-- Font Awesome JS -->
    <script src="js/all.min.js"></script>
    <!-- Custom JS -->
    <script src="js/custom.js"></script>
</body>

</html>home/islapiiu/sites/evergreenvilla/view-tours.php000064400000023061150767717140016332 0ustar00<!doctype html>

<?php

include './class/include.php';

$id = $_GET["id"];

$ACTIVITY = new Activities($id);

?>

<html lang="en">



    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />

    <head>

        <!-- Required meta tags -->

        <meta charset="utf-8">

        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

        <!-- Meta Tags -->

        <meta http-equiv="X-UA-Compatible" content="IE=edge">

        <meta name="description" content="Vilena template">

        <meta name="keywords" content="hotel, resort, hotel booking, tour, living hotel, motel, event, hotel template">

        <meta name="author" content="Unicoder">



        <!-- Favicons -->

        <link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">



        <!-- Font Link -->

        <link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800" rel="stylesheet">

        <link href="https://fonts.googleapis.com/css?family=Oleo+Script:400,700" rel="stylesheet">



        <!-- Required style of the theme -->

        <link rel="stylesheet" href="css/bootstrap.min.css">

        <link rel="stylesheet" href="css/layerslider.css">

        <link rel="stylesheet" href="css/common.css">

        <link rel="stylesheet" href="css/style.css">

        <link rel="stylesheet" href="css/color.css" id="color-change">

        <link rel="stylesheet" href="css/fontawesome-all-5.2.0.min.css">

        <link rel="stylesheet" href="webfonts/flaticon/flaticon.css">

        <link href="css/custom.css" rel="stylesheet" type="text/css"/>



        <title>Evergreen Villa | Tours</title>

    </head>

    <body>





        <div id="page_wrapper">

            <div class="">

                <!-- Header 4 Section Start -->

                <?php include './header-top.php'; ?>

                <!-- Header 4 Section End --> 



                <!-- Page Banner Section Start -->

                <div class="full-row overlay-secondery-opacity-65 bg-img-5" id="page-banner">

                    <div class="container">

                        <div class="row py-80">

                            <div class="col-sm-6">

                                <h1 class="banner-title text-white"><?php echo $ACTIVITY->title; ?></h1>

                            </div>

                            <div class="col-sm-6">

                                <ul class="pages-link">

                                    <li><a href="index.php">Home</a></li>

                                    <li>/</li>

                                    <li>Tours</li>

                                </ul>

                            </div>

                        </div>

                    </div>

                </div>

                <!-- Page Banner Section End -->



                <section class="full-row bg-gray">

                    <div class="container">

                        <div class="row">

                            <div class="col-lg-8">

                                <div class="place-item-details">

                                    <div class="place-detail-info">

                                        <!-- <h3><?php echo $ACTIVITY->title ?></h3> -->

<!--                                        <span>Blue water beach and white sand test</span>-->

                                    </div>

                                    <div class="mt-5">



                                        <div class="photo-gallery"> 

                                            <?php

                                    $ACTIVITY_PHOTO = ActivitiesPhoto::getActivitiesPhotosById($id);

                                            foreach ($ACTIVITY_PHOTO as $key => $activity_photo) {

                                                if ($key < 6) {

                                                    ?>

                                                    <a href="upload/activity/gallery/<?php echo $activity_photo['image_name'] ?>" class="img_view" data-fancybox="gallery">

                                                        <div class="overlay-secondery-opacity-40"> <span class="text-primary xy-center"><i class="fa fa-plus"></i></span> <img src="upload/activity/gallery/thumb/<?php echo $activity_photo['image_name'] ?>" alt="Image not found!"> </div>

                                                    </a> 

                                                    <?php

                                                }

                                            }

                                            ?>

                                        </div>

                                    </div>



                                    <div class="line"></div>

                                    <p><?php echo $ACTIVITY->description ?></p>



                                </div>

                            </div>

                            <div class="col-lg-4">

                                <h3 class="top-title">Other Excursion</h3>

                                <div class="row">





                                    <div class="widget widget_posts">



                                        <ul>

                                              <?php

                                       $ACTIVITY = new Activities(NULL);

                                                foreach ($ACTIVITY->all() as $activity) {

                                                    ?>

                                                <li>

                                                    <div class="post-item mb-4 bg-color box">

                                                        <div class="row">

                                                            <div class="col-lg-5 col-md-7">

                                                                <div class=""> <a href="view-tours.php?id=<?php echo $activity['id'] ?>"><img src="upload/activity/<?php echo $activity['image_name'] ?>" alt="Image not found!" ></a> </div>

                                                            </div>

                                                            <div class="col-lg-6 col-md-7 div-padding" >

                                                                <div class="post-detail post-detail-padding">

                                                                    <h5 class="title h5-title"><a class="text-secondery" href="view-tours.php?id=<?php echo $activity['id'] ?>"><?php echo substr($activity['title'], 0, 13)?>...</a></h5>

                                                                    <p class="p-des"><?php echo substr($activity['short_description'], 0, 45) ?>...</p>

                                                                    <button>

                                                                        <a href="view-tours.php?id=<?php echo $activity['id'] ?>">View More</a>

                                                                    </button>

                                                                </div>

                                                            </div>

                                                        </div>

                                                    </div><!--wd-post end-->

                                                </li>

                                                <?php

                                            }

                                            ?>



                                        </ul>

                                    </div><!--widget_posts end-->



                                </div>



                            </div>

                        </div>

                    </div>

                </section>

                <!-- Footer Section Start -->

                <?php include './footer.php'; ?>

                <!-- Footer Section End --> 



                <!-- Copyright Section Start -->

                

                <!-- Copyright Section End -->

                <div class="scroll-to-top"> <a href="#" class="btn-scroll" data-target="body"><i class="fa fa-angle-up" aria-hidden="true"></i><b>Back to Top</b></a> </div>

            </div>

        </div>

        <!-- Wrapper End --> 



        <!-- Jquery links --> 

        <script src="js/jquery.min.js"></script> 

        <script src="js/greensock.js"></script> 

        <script src="js/layerslider.transitions.js"></script> 

        <script src="js/layerslider.kreaturamedia.jquery.js"></script> 

        <script src="js/popper.min.js"></script> 

        <script src="js/bootstrap.min.js"></script> 

        <script src="js/common.js"></script>

        <script src="js/jquery.countdown.js"></script>

        <script src="js/jquery.cookie.js"></script> 

        <script src="js/custom.js"></script> 



        <!-- For Home page5 side nav --> 

        <script>

            function openNav() {

                document.getElementById("mySidenav").style.width = "250px";

                document.getElementById("main").style.marginRight = "250px";

            }



            function closeNav() {

                document.getElementById("mySidenav").style.width = "0";

                document.getElementById("main").style.marginRight = "0";

            }

        </script>

    </body>



</html>