| Current Path : /home/helpink/www/components/com_jbusinessdirectory/views/offers/tmpl/ |
| Current File : /home/helpink/www/components/com_jbusinessdirectory/views/offers/tmpl/default.php |
<?php // no direct access
/**
* @copyright Copyright (C) 2008-2009 CMSJunkie. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
defined('_JEXEC') or die('Restricted access');
jimport('joomla.application.module.helper');
$document = JFactory::getDocument();
$config = JBusinessUtil::getSiteConfig();
$base_url = ( isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on' ? 'https' : 'http' ) . '://' . $_SERVER['HTTP_HOST'];
$url = $base_url . $_SERVER["REQUEST_URI"];
$title = "";
$description = "";
$keywords = "";
$image = "";
$items = array();
if(!empty($this->category->name))
$items[] = $this->category->name;
if(!empty($this->type))
$items[] = $this->type->name;
if(!empty($this->citySearch))
$items[] = $this->citySearch;
if(!empty($this->regionSearch))
$items[] = $this->regionSearch;
if(!empty($this->provinceSearch))
$items[]= $this->provinceSearch;
if(!empty($this->countrySearch))
$items[]= $this->country->country_name;
$items[] = JText::_("LNG_OFFERS");
$title = implode(" - ",$items);
$title .= " - ".$config->sitename;
$pageTitle = JBusinessUtil::getPageTitle($title);
if(!empty($pageTitle)){
$title = $pageTitle;
}
if (isset($this->category)){
if (!empty($this->category->meta_title)){
$title = $this->category->meta_title;
}
if (!empty($this->category->meta_description)){
$description = $this->category->meta_description;
}
if (!empty($this->category->meta_keywords)){
$keywords = $this->category->meta_keywords;
}
if (!empty($this->category->imageLocation)){
$image = $this->category->imageLocation;
}
}
JBusinessUtil::setMetaData($title, $description, $keywords, false);
JBusinessUtil::setFacebookMetaData($title, $description,$image, $url);
$menuItemId = JBusinessUtil::getActiveMenuItem();
$fullWidth = true;
$enableSearchFilter = $this->appSettings->enable_search_filter_offers;
$mposition = "dir-search-offers-top";
$topModules = JModuleHelper::getModules($mposition);
$mposition = "dir-search-offers";
if (!empty($this->category)) {
$mposition = "dir-search-offers-" . $this->category->alias;
}
$bottomModules = JModuleHelper::getModules($mposition);
if($enableSearchFilter || !empty($topModules) || !empty($bottomModules)){
$fullWidth = false;
}
//add the possibility to chage the view and layout from http params
$grid_layout = JFactory::getApplication()->input->get('grid_layout');
if(!empty($grid_layout)) {
$this->appSettings->offer_search_results_grid_view = $grid_layout;
}
$list_layout = JFactory::getApplication()->input->get('list_layout');
if(!empty($list_layout)) {
$this->appSettings->offer_search_results_list_view = $list_layout;
}
$view_mode = JFactory::getApplication()->input->get('view_mode',null);
if(isset($view_mode)) {
$this->appSettings->offers_view_mode = $view_mode;
}
$setCategory = isset($this->category)?1:0;
$categId = isset($this->categoryId)?$this->categoryId:0;
$showClear = 0;
$app = JFactory::getApplication();
$active = $app->getMenu()->getActive();
$this->params = $active->getParams();
?>
<?php if (!empty($this->params) && $this->params->get('show_page_heading')) { ?>
<div class="page-header">
<h1 class="title"> <?php echo $this->escape($this->params->get('page_heading')); ?> </h1>
</div>
<?php } ?>
<div id="jbd-container" class="jbd-container jbd-container offers">
<div class="row">
<?php if(!$fullWidth && $this->appSettings->offers_search_filter_type == 2){?>
<div class="col-lg-3">
</div>
<?php }?>
<div class="col-lg">
<div class="jbd-search-statistics">
<div class="search-keyword">
<div class="result-counter"><?php echo $this->pagination->getResultsCounter()?></div>
</div>
<div>
<div class="search-options">
<div class="jbd-select-box">
<i class="la la-sort"></i>
<select name="orderBy" class="chosen jbd-select" onchange="jbdUtils.changeOrder(this.value)">
<?php echo JHtml::_('select.options', $this->sortByOptions, 'value', 'text', $this->orderBy);?>
</select>
</div>
<?php if($this->appSettings->show_grid_list_option == 1) { ?>
<div class="view-mode">
<a id="grid-view-link" class="grid" href="javascript:jbdOffers.showGrid()"><i class="la la-th-large"></i></a>
<a id="list-view-link" class="list active" href="javascript:jbdOffers.showList()"><i class="la la-list-ul"></i></a>
</div>
<?php } ?>
<?php if($this->appSettings->show_search_map && $this->defaultAttributes['map'] != ATTRIBUTE_NOT_SHOW) { ?>
<div id="search-map" class="view-mode">
<a id="map-link" class="map" title="<?php echo JText::_("LNG_MAP")?>" href="javascript:jbdUtils.showMap(true)">
<i class="la la-map"></i>
</a>
</div>
<?php } ?>
<?php if($this->appSettings->enable_rss == 1) { ?>
<div class="view-mode">
<a href="<?php echo JRoute::_('index.php?option=com_jbusinessdirectory&task=directoryrss.getOffersRss') ?>" target="_blank">
<i class="la la-rss"></i>
</a>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<?php if(!$fullWidth && $this->appSettings->offers_search_filter_type == 2){?>
<div class="col-md-3">
<?php if(!empty($topModules)) { ?>
<div class="search-modules">
<?php
foreach($topModules as $module) {
echo JModuleHelper::renderModule($module, array("style"=>"xhtml"));
} ?>
</div>
<?php } ?>
<?php if($enableSearchFilter) {
if ($this->appSettings->offers_search_filter_type == 2) { ?>
<div class="search-filter-container" >
<div class="filters-header">
<i class="icon filters"></i> <?php echo JText::_("LNG_FILTERS") ?>
</div>
<div id="search-filters-react" class="vertical-filter">
</div>
</div>
<?php }
} ?>
<?php if (!empty($bottomModules)) { ?>
<div class="search-modules">
<?php
foreach ($bottomModules as $module) {
echo JModuleHelper::renderModule($module, array("style"=>"xhtml"));
}
?>
</div>
<?php } ?>
</div>
<?php }?>
<div class="col-md">
<div id="search-results" class="search-results">
<?php
jimport('joomla.application.module.helper');
// this is where you want to load your module position
$modules = JModuleHelper::getModules("offers-search");
?>
<?php if(isset($modules) && count($modules)>0) { ?>
<div class="search-modules">
<?php
$fullWidth = false;
foreach($modules as $module) {
echo JModuleHelper::renderModule($module, array("style"=>"xhtml"));
} ?>
<div class="clear"></div>
</div>
<?php } ?>
<div class="search-header">
<?php if($enableSearchFilter){
if ($this->appSettings->offers_search_filter_type != 2) { ?>
<div id="search-filters-react">
</div>
<?php }
} ?>
<?php if(isset($this->category) && $this->appSettings->show_cat_description && !empty($this->category->description)) { ?>
<div class="category-container">
<div class="row">
<?php if(!empty($this->category->imageLocation)) { ?>
<div class="col-md-3">
<div class="categoy-image"><img alt="<?php echo $this->category->name?>" src="<?php echo BD_PICTURES_PATH.$this->category->imageLocation ?>"></div>
</div>
<?php } ?>
<div class="col-md">
<h1 class="category-title"><?php echo $this->category->name?></h1>
<div>
<div id="category-description" class="dir-cat-description">
<div class="intro-text">
<?php echo JBusinessUtil::truncate(JHTML::_("content.prepare", $this->category->description),300) ?>
<?php if(strlen(strip_tags($this->category->description))>strlen(strip_tags(JBusinessUtil::truncate(JHTML::_("content.prepare", $this->category->description),300)))){?>
<a class="cat-read-more" href="javascript:void(0)" onclick="jQuery('#category-description').toggleClass('open')">
<?php echo JText::_("LNG_MORE") ?> </a>
<?php } ?>
</div>
<div class="full-text">
<?php echo JHTML::_("content.prepare", $this->category->description) ?>
<a class="cat-read-more" href="javascript:void(0)" onclick="jQuery('#category-description').toggleClass('open')">
<?php echo JText::_("LNG_LESS") ?> </a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php } ?>
<div id="search-details">
<div id="search-module" class="search-module">
<?php
$modules = JModuleHelper::getModules("offers-search-middle");
foreach($modules as $module) {
echo JModuleHelper::renderModule($module, array("style"=>"xhtml"));
}
?>
<div class="clear"></div>
</div>
</div>
</div>
<form action="<?php echo JRoute::_('index.php?option=com_jbusinessdirectory'.$menuItemId) ?>" method="<?php echo $this->appSettings->offer_submit_method ?>" name="adminForm" id="adminForm">
<?php if($this->appSettings->show_search_map && $this->defaultAttributes['map'] != ATTRIBUTE_NOT_SHOW){?>
<div id="companies-map-container" <?php echo !$this->appSettings->map_auto_show ? 'style="display:none;"' : '' ?>>
<?php require 'map.php' ?>
</div>
<?php } ?>
<?php require 'offers_grid.php' ?>
<?php require 'offers_list.php' ?>
<?php if($this->appSettings->search_results_loading){ ?>
<div id="load-more-btn" class="row" style="display:none">
<div class="col-12 text-center mt-4 btn-container">
<button type="button" class="load-more-js btn btn-outline-primary" onclick="jbdUtils.loadMoreItems()" ><?php echo JText::_("LNG_LOAD_MORE")?></button>
</div>
</div>
<input type="hidden" id="start" value="0"/>
<input type="hidden" id="total-results" value="<?php echo $this->pagination->total ?>"/>
<input type='hidden' name='list_layout' id="list_layout" value='<?php echo $this->appSettings->offer_search_results_list_view ?>' />
<input type='hidden' name='grid_layout' id="grid_layout" value='<?php echo $this->appSettings->offer_search_results_grid_view ?>' />
<?php } ?>
<?php if(!$this->appSettings->search_results_loading){ ?>
<div class="pagination" <?php echo $this->pagination->total==0 ? 'style="display:none"':''?>>
<?php echo $this->pagination->getListFooter(); ?>
<div class="clear"></div>
</div>
<?php } ?>
<input type='hidden' name='view' value='offers' />
<input type='hidden' id="categories-filter" name='categories' value='<?php echo isset($this->categories)?$this->categories:"" ?>' />
<input type='hidden' id="categoryId" name='categoryId' value='<?php echo isset($this->categoryId)?$this->categoryId:"0" ?>' />
<input type='hidden' name='searchkeyword' id="searchkeyword" value='<?php echo isset($this->searchkeyword)?$this->searchkeyword:'' ?>' />
<input type='hidden' name='countrySearch' id='country-search' value='<?php echo !empty($this->countrySearch)?$this->countrySearch: '' ?>' />
<input type='hidden' name='provinceSearch' id='province-search' value="<?php echo !empty($this->provinceSearch)?$this->escape($this->provinceSearch): "" ?>" />
<input type='hidden' name='areaSearch' id='area-search' value="<?php echo !empty($this->areSaearch)?$this->escape($this->areSaearch): "" ?>" />
<input type='hidden' id='type-search' name='typeSearch' value='<?php echo !empty($this->typeSearch)?$this->typeSearch: '' ?>' />
<input type='hidden' id='city-search' name='citySearch' value="<?php echo !empty($this->citySearch)?$this->escape($this->citySearch): "" ?>" />
<input type='hidden' id='region-search' name='regionSearch' value="<?php echo !empty($this->regionSearch)?$this->escape($this->regionSearch): "" ?>" />
<input type='hidden' id='minprice-search' name='minprice' value="<?php echo !empty($this->minPrice)?$this->minPrice: "" ?>" />
<input type='hidden' id='maxprice-search' name='maxprice' value="<?php echo !empty($this->maxPrice)?$this->maxPrice: "" ?>" />
<input type='hidden' name='zipcode' id="zipcode" value="<?php echo !empty($this->zipCode)?$this->escape($this->zipCode): "" ?>" />
<input type='hidden' name='geo-latitude' id="geo-latitude" value="<?php echo !empty($this->location)?$this->escape($this->location["latitude"]): "" ?>" />
<input type='hidden' name='geo-longitude' id="geo-longitude" value="<?php echo !empty($this->location)?$this->escape($this->location["longitude"]): "" ?>" />
<input type='hidden' name='radius' id="radius" value='<?php echo isset($this->radius)?$this->radius: '' ?>' />
<input type='hidden' name='selectedParams' id='selectedParams' value='<?php echo !empty($this->selectedParams["selectedParams"])?$this->selectedParams["selectedParams"]:"" ?>' />
<input type='hidden' name='resetSearch' id="resetSearch" value="" />
<input type='hidden' name='orderBy' id='orderBy' value="<?php echo !empty($this->orderBy)?$this->orderBy:"" ?>" />
<?php if(!empty($this->customAtrributes)){ ?>
<?php foreach($this->customAtrributes as $key=>$val){?>
<input type='hidden' name='attribute_<?php echo $key?>' value='<?php echo $val ?>' />
<?php } ?>
<?php } ?>
</form>
<div class="clear"></div>
</div>
</div>
</div>
</div>
<div class="jbd-container" id="rss-model" style="display: none">
<form action="<?php echo JRoute::_('index.php?option=com_jbusinessdirectory&view=offers');?>" method="get" name="rssForm" id="rssForm">
<div class="jmodal-sm">
<div class="jmodal-header">
<p class="jmodal-header-title"><?php echo JText::_('LNG_OFFER_RSS') ?></p>
<a href="#close-modal" rel="modal:close" class="close-btn"><i class="la la-close "></i></a>
</div>
<div class="jmodal-body">
<p><?php echo JText::_('LNG_CATEGORY_RSS_TEXT'); ?></p>
<div class="row">
<div class="col-12">
<div class="jinput-outline jinput-hover">
<select name="category" id="category" class="form-control chosen-select">
<option value="0"><?php echo JText::_("LNG_ALL_CATEGORIES") ?></option>
<?php echo JHtml::_('select.options', $this->categoryOptions, 'value', 'text', null);?>
</select>
</div>
</div>
</div>
<input type="hidden" name="option" value="<?php echo JBusinessUtil::getComponentName()?>" />
<input type="hidden" name="task" id="task" value="directoryrss.getOffersRss" />
<?php echo JHTML::_( 'form.token' ); ?>
</div>
<div class="jmodal-footer">
<div class="btn-group" role="group" aria-label="">
<button type="button" class="jmodal-btn jmodal-btn-outline" onclick="jQuery.jbdModal.close()"><?php echo JText::_("LNG_CANCEL")?></button>
<button type="submit" class="jmodal-btn"><?php echo JText::_("LNG_GENERATE")?></button>
</div>
</div>
</div>
</form>
</div>
<?php echo OfferSellingService::getCartModal() ?>
<script>
window.addEventListener('load', function(){
jbdUtils.setProperty('get_items_url',jbdUtils.getAjaxUrl('getItemsAjax', 'offers'));
jbdUtils.setProperty('initialize_get_items_url',jbdUtils.getAjaxUrl('initializeGetItemsAjax', 'offers'));
jbdUtils.setProperty('filter_item_type', JBDConstants.ITEM_TYPE_OFFER);
jbdUtils.setProperty('ajax_search_filter_type',jbdUtils.getProperty('offers_search_filter_type'));
<?php if($this->pagination->total > 0 && $this->appSettings->search_results_loading){ ?>
jbdUtils.initializeGetItemsAjax();
<?php }else{ ?>
jQuery("#list-view-container").removeClass("loading");
jQuery("#jbd-grid-view").removeClass("loading");
<?php } ?>
<?php if($appSettings->enable_ratings && !$this->appSettings->search_results_loading){?>
jbdListings.renderListAverageRating();
<?php } ?>
<?php if($enableSearchFilter && $this->pagination->total > 0){ ?>
const e = React.createElement;
ReactDOM.render(
e(SearchFilter, {searchFilterType:jbdUtils.getProperty('offers_search_filter_type'), itemType: JBDConstants.ITEM_TYPE_OFFER, showSearchFilterParams: true, }),
document.querySelector('#search-filters-react')
);
<?php } ?>
<?php if ($this->appSettings->offers_view_mode == 1) {?>
jbdOffers.showGrid();
<?php }else{ ?>
jbdOffers.showList();
<?php }?>
<?php if($this->appSettings->show_search_map && $appSettings->map_auto_show && $this->pagination->total > 0 && $this->defaultAttributes['map'] != ATTRIBUTE_NOT_SHOW){?>
jbdUtils.showMap();
<?php } ?>
jQuery(".chosen").chosen({width:"165px", disable_search_threshold: 5, inherit_select_classes: true , placeholder_text_single: "<?php echo JText::_('LNG_SELECT_OPTION') ?>" , placeholder_text_multiple: "<?php echo JText::_('LNG_SELECT_OPTION') ?>"});
jQuery(".chosen-select").chosen({width: "95%", disable_search_threshold: 5, search_contains: true, placeholder_text_single: "<?php echo JText::_('LNG_SELECT_OPTION') ?>" , placeholder_text_multiple: "<?php echo JText::_('LNG_SELECT_OPTION') ?>"});
});
</script>