PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
caribe
/
components
/
com_djcatalog2
/
views
/
producers
<?php /** * @version $Id: view.html.php 345 2014-09-26 11:39:50Z michal $ * @package DJ-Catalog2 * @copyright Copyright (C) 2012 DJ-Extensions.com LTD, All rights reserved. * @license http://www.gnu.org/licenses GNU/GPL * @author url: http://dj-extensions.com * @author email contact@dj-extensions.com * @developer Michal Olczyk - michal.olczyk@design-joomla.eu * * DJ-Catalog2 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, either version 3 of the License, or * (at your option) any later version. * * DJ-Catalog2 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 DJ-Catalog2. If not, see <http://www.gnu.org/licenses/>. * */ defined ('_JEXEC') or die('Restricted access'); jimport('joomla.application.component.view'); jimport('joomla.html.pagination'); class DJCatalog2ViewProducers extends JViewLegacy { public function __construct($config = array()) { parent::__construct($config); $this->_addPath('template', JPATH_COMPONENT. '/themes/default/views/producers'); $theme = DJCatalog2ThemeHelper::getThemeName(); if ($theme && $theme != 'default') { $this->_addPath('template', JPATH_COMPONENT. '/themes/'.$theme.'/views/producers'); } } function display($tpl = null) { JHTML::_( 'behavior.modal' ); $app = JFactory::getApplication(); $jinput = $app->input; $view = $jinput->get('view'); $document= JFactory::getDocument(); $model = $this->getModel(); $menus = $app->getMenu('site'); $menu = $menus->getActive(); $mOption = (empty($menu->query['option'])) ? null : $menu->query['option']; $mCatid = (empty($menu->query['cid'])) ? null : (int)$menu->query['cid']; $mProdid = (empty($menu->query['pid'])) ? null : (int)$menu->query['pid']; $params = Djcatalog2Helper::getParams(); $filter_order = $jinput->get( 'order',$params->get('producers_default_order','i.ordering'),'cmd' ); $filter_order_Dir = $jinput->get( 'dir', $params->get('producers_default_order_dir','asc'), 'word' ); $limitstart = $jinput->getInt('limitstart', 0); $limit_items_show = $params->get('producers_pagination_limit',10); $jinput->set('limit', $limit_items_show); $dispatcher = JDispatcher::getInstance(); $list = $model->getItems(); $total = $model->getTotal(); $pagination = $model->getPagination(); $this->assignref('document',$document); $this->assignref('items', $list); $this->assignref('total', $total); $this->assignref('pagination', $pagination); $this->assignref('params', $params); $this->_prepareDocument(); parent::display($tpl); } protected function _prepareDocument() { $app = JFactory::getApplication(); $menus = $app->getMenu(); $pathway = $app->getPathway(); $title = null; $heading = null; $menu = $menus->getActive(); if ($menu) { $this->params->def('page_heading', $this->params->get('page_title', $menu->title)); } $title = $this->params->get('page_title', ''); if ($menu && ($menu->query['option'] != 'com_djcatalog2' || $menu->query['view'] != 'producers')) { $title = JText::_('COM_DJCATALOG2_PRODUCERS_HEADING'); $path = array(array('title' => $title, 'link' => '')); foreach ($path as $item) { $pathway->addItem($item['title'], $item['link']); } } if (empty($title)) { $title = $app->getCfg('sitename'); } elseif ($app->getCfg('sitename_pagetitles', 0)) { if ($app->getCfg('sitename_pagetitles', 0) == '2') { $title = JText::sprintf('JPAGETITLE', $title, $app->getCfg('sitename')); } else { $title = JText::sprintf('JPAGETITLE', $app->getCfg('sitename'), $title); } } $this->document->setTitle($title); if ($this->params->get('menu-meta_description')) { $this->document->setDescription($this->params->get('menu-meta_description')); } if ($this->params->get('menu-meta_keywords')) { $this->document->setMetadata('keywords', $this->params->get('menu-meta_keywords')); } if ($this->params->get('robots')) { $this->document->setMetadata('robots', $this->params->get('robots')); } } }
[+]
..
[-] index.html
[edit]
[-] metadata.xml
[edit]
[+]
tmpl
[-] view.html.php
[edit]
[-] .htaccess.disabled
[edit]