home
/
zktecojo
/
public_html
/
app
/
storage
/
views
➕ New
📤 Upload
✎ Editing:
d74c8bf620165cc29955d729ccb712b4
← Back
<?php $__env->startSection('metatags'); ?> <meta name="title" content="<?php echo e($pageContent->page_meta_title); ?>" /> <meta name="description" content="<?php echo e($pageContent->page_meta_description); ?>" /> <meta name="keywords" content="<?php echo e($pageContent->page_meta_keyword); ?>" /> <?php $__env->stopSection(); ?> <?php $__env->startSection('seoPageTitle'); ?> <title><?php echo (!empty($pageContent->page_seo_title))?$pageContent->page_seo_title:$pageTitle; ?></title> <?php $__env->stopSection(); ?> <?php $__env->startSection('styles'); ?> @parent <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="midle-main inner-main inner-solution"> <div class="container"> <div class="col-sm-8 col-md-9 left-sect prd-rht-none animated wow fadeInRight"> <div class="solution"> <!--<div class="Inbanner2" style="background:url(<?php echo asset('assets/uploads/page/recommended_banner/'.$pageContent->page_banner ) ?>)" > <div class="caption"><?php echo (($lang=='ar')?$pageContent->page_name_arabic:$pageContent->page_name ); ?></div> </div>--> <div class="Inbanner2" > <div id="gMap"></div> <div class="caption"><?php echo (($lang=='ar')?$pageContent->page_name_arabic:$pageContent->page_name ); ?></div> </div> <div class="solution-inner right-in"> <div class="contact"> <div class="row"> <div class="col-sm-7"> <h3><?php echo (($lang=='ar')?$websiteSettings->address1_ar:$websiteSettings->address1 ); ?></h3> <address> <span><?php echo (($lang=='ar')?$websiteSettings->address2_ar:$websiteSettings->address2); ?></span><br> <?php echo (($lang=='ar')?$websiteSettings->address3_ar:$websiteSettings->address3 ); ?><br> <?php echo (($lang=='ar')?$websiteSettings->address4_ar:$websiteSettings->address4 ); ?> <br> <?php echo (($lang=='ar')?$websiteSettings->address5_ar:$websiteSettings->address5 ); ?><br> </address> <ul class="address"> <li> <i class="fa fa-phone"></i> <?php echo get_number_helper($websiteSettings->phone); ?> </li> <li> <i class="fa fa-fax "></i> <?php echo $websiteSettings->fax; ?></li> <li> <i class="fa fa-mobile-phone "></i> <?php echo get_number_helper($websiteSettings->mobile); ?> </li> <li> <i class="fa fa-envelope-o"></i> <?php echo $websiteSettings->email; ?> </li> <li> <i class="fa fa-map-marker"></i> <a class="various " href="#showMap" id="mapcanvas"> click to view map </a> </li> <div id="showMap" style="display:none;"> <div id="map_canvas" style="width:100%;height:500px"></div> </div> </ul> </div> <div class="col-sm-5"> <h3><?php echo Lang::get('messages.office_location');; ?></h3> <div class="loaction-map"> <a class="various fancybox.iframe" href="<?php echo asset('assets/uploads/locationmap/'.$websiteSettings->company_brochure ) ?>"> <img src="<?php echo asset('assets/uploads/locationmap/small/'.$websiteSettings->company_brochure ) ?>" > </a> </div> </div> </div> </div> </div> <div class="global-contact"> <h3><?php echo Lang::get('messages.global_contact');; ?></h3> <div class="row"> <div class="cnt-row"> <?php $i=0;$divOpen=false; foreach($locList as $loc){ $i++; if($i==1 || $i%4==0 ){ $divOpen=true; echo '<div class="row" >'; } ?> <div class="col-md-4"> <div class="adr-block"> <h5><?php echo (($lang=='ar')?$loc->location_address1_ar:$loc->location_address1); ?></h5> <?php echo (($lang=='ar')?$loc->location_address2_ar:$loc->location_address2); ?> <?php if(!empty($loc->location_phone) || !empty($loc->location_fax) || !empty($loc->location_mail) || !empty($loc->location_website)){ ?> <div class="cnt-block"> <?php if(!empty($loc->location_phone)){?><span><?php echo Lang::get('messages.phone');; ?> : </span> <?php echo get_number_helper($loc->location_phone); ?><?php } ?> <?php if(!empty($loc->location_fax)){?><span><?php echo Lang::get('messages.fax');; ?> :</span><?php echo $loc->location_fax; ?><br><?php } ?> <?php if(!empty($loc->location_mail)){?><span><?php echo Lang::get('messages.sales');; ?> :</span> <?php echo $loc->location_mail; ?><?php } ?></br> <?php if(!empty($loc->location_website)){?><span><?php echo Lang::get('messages.website');; ?> :</span> <?php echo $loc->location_website; ?><?php } ?> </div> <?php } ?> </div> </div> <?php if($i%3==0){ $i=0; $divOpen=false; echo '</div>'; } ?> <?php } ?> <?php if($divOpen==true){echo '</div>'; } ?> </div> </div> </div> </div> </div> <div class="col-sm-4 col-md-3 right-sect animated wow fadeInLeft"> <aside class="side-block solution-menu"> <h2><?php echo $current_parent_menu; ?></h2> <?php echo get_sub_menu_helper($subMenuList,$currentPageAlias,$nearestParent,$lang); ?> </aside> </div> <div class="clearfix"></div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> @parent <?php if(!empty($websiteSettings->map_longitude) && !empty($websiteSettings->map_latitude)) { ?> <script src="http://maps.google.com/maps/api/js?sensor=false"></script> <script> var latLongArr = [],markers=[],minZoomLevel=3; var mapOptions = { center: new google.maps.LatLng(<?php echo $websiteSettings->map_latitude; ?>, <?php echo $websiteSettings->map_longitude; ?>), zoom: 12 }; var map = new google.maps.Map(document.getElementById("map_canvas"),mapOptions); var myLatlng = new google.maps.LatLng(<?php echo $websiteSettings->map_latitude ?>,<?php echo $websiteSettings->map_longitude ?>); var marker = new google.maps.Marker({ position: myLatlng, map: map, title: '<?php echo $websiteSettings->sitename; ?>', visible: true }); markers.push(marker); marker.setMap(map); google.maps.event.addListener(map, 'zoom_changed', function() { if (map.getZoom() < minZoomLevel) map.setZoom(minZoomLevel); }); //---------------------------- var mapOptions1 = { center: new google.maps.LatLng(<?php echo $websiteSettings->map_latitude; ?>, <?php echo $websiteSettings->map_longitude; ?>), zoom: 12 }; /* */ var gMap = new google.maps.Map(document.getElementById("gMap"),mapOptions1); var myLatlng = new google.maps.LatLng(<?php echo $websiteSettings->map_latitude ?>,<?php echo $websiteSettings->map_longitude ?>); var marker = new google.maps.Marker({ position: myLatlng, map: gMap, title: '<?php echo $websiteSettings->sitename; ?>', visible: true }); markers.push(marker); marker.setMap(gMap); google.maps.event.addListener(gMap, 'zoom_changed', function() { if (gMap.getZoom() < minZoomLevel) gMap.setZoom(minZoomLevel); }); </script> <?php } ?> <script type="text/javascript"> $(document).ready(function(){ $("#mapcanvas").fancybox({ width : '75%', height : '75%', autoSize : false, openEffect : 'none', closeEffect: 'none', 'afterShow':function(){ google.maps.event.trigger(map,'resize'); map.setCenter(marker.getPosition()); } }); }); </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.frontend.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel