|
|
|
@ -127,7 +127,7 @@ class webgetbokun extends CI_Controller
|
|
|
|
|
<h2>Description<i class="fa fa-angle-down" aria-hidden="true"></i></h2>
|
|
|
|
|
<div class="details-content">
|
|
|
|
|
<div class="details-list">
|
|
|
|
|
<h3><i class="fa fa-circle" aria-hidden="true"></i>Trip Overview</h3>'.$temp_summary.'
|
|
|
|
|
<h3><i class="fa fa-circle" aria-hidden="true"></i>Overview</h3>'.$temp_summary.'
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>';
|
|
|
|
@ -136,21 +136,22 @@ class webgetbokun extends CI_Controller
|
|
|
|
|
<h2>Itinerary<i class="fa fa-angle-down" aria-hidden="true"></i></h2>
|
|
|
|
|
<div class="details-content">'.$strContent.'</div></div>';
|
|
|
|
|
//FAQ
|
|
|
|
|
$tempFaq = $strFaq = '';
|
|
|
|
|
$tempFaq = $strFaq = $strIncluded = $strExcluded = '';
|
|
|
|
|
if (isset($activityDeatil->included)){
|
|
|
|
|
if ($activityDeatil->included!="" && $activityDeatil->included!=null){
|
|
|
|
|
$strFaq = '<div class="details-list">
|
|
|
|
|
<h3><i class="fa fa-circle" aria-hidden="true"></i>What\'s included?</h3>'.$activityDeatil->included.'</div>';
|
|
|
|
|
$tempFaq.=$strFaq;
|
|
|
|
|
$strIncluded.=$strFaq;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (isset($activityDeatil->excluded)){
|
|
|
|
|
if ($activityDeatil->excluded!="" && $activityDeatil->excluded!=null){
|
|
|
|
|
$strFaq = '<div class="details-list">
|
|
|
|
|
<h3><i class="fa fa-circle" aria-hidden="true"></i>What\'s excluded?</h3>'.$activityDeatil->excluded.'</div>';
|
|
|
|
|
$tempFaq.=$strFaq;
|
|
|
|
|
$strExcluded.=$strFaq;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$tempFaq = '<div class="row"><div class="col-xs-24 col-sm-12">'.$strIncluded.'</div><div class="col-xs-24 col-sm-12">'.$strExcluded.'</div><div class="clearfix"></div></div>';
|
|
|
|
|
|
|
|
|
|
if (isset($activityDeatil->requirements)){
|
|
|
|
|
if ($activityDeatil->requirements!="" && $activityDeatil->requirements!=null){
|
|
|
|
|