PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
administrator
/
components
/
com_djcatalog2
/
views
/
thumbs
<?php /** * @version $Id: view.html.php 132 2013-05-20 07:12:44Z 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.application.categories'); jimport('joomla.html.pane'); class Djcatalog2ViewThumbs extends JViewLegacy { function display($tpl = null) { $document = JFactory::getDocument(); $document->addScript(JURI::root() . "administrator/components/com_djcatalog2/views/thumbs/thumbs.js"); JToolBarHelper::title( JText::_('COM_DJCATALOG2_THUMBNAILS_RECREATION')); JToolBarHelper::preferences('com_djcatalog2', '450', '900'); if (class_exists('JHtmlSidebar')){ $this->sidebar = JHtmlSidebar::render(); } $version = new JVersion; if (version_compare($version->getShortVersion(), '3.0.0', '<')) { $tpl = 'legacy'; } parent::display($tpl); } }
[+]
..
[-] index.html
[edit]
[-] thumbs.js
[edit]
[+]
tmpl
[-] view.html.php
[edit]
[-] .htaccess.disabled
[edit]