0x1998 - MANAGER
Edit File: category.php
<?php /** * @package jDownloads * @version 2.5 * @copyright (C) 2007 - 2013 - Arno Betz - www.jdownloads.com * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.txt * * jDownloads 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. */ // no direct access defined('_JEXEC') or die; JLoader::import('categories', JPATH_ROOT.DIRECTORY_SEPARATOR.'components'.DIRECTORY_SEPARATOR.'com_jdownloads'.DIRECTORY_SEPARATOR.'helpers'.DIRECTORY_SEPARATOR); /** * jDownloads Component Category Tree * * @static */ class JdownloadsCategories extends JDCategories { public function __construct($options = array()) { if (!is_array($options)){ $options = array(); } $options['table'] = '#__jdownloads_files'; $options['extension'] = 'com_jdownloads'; parent::__construct($options); } public function getExtension() { return 'com_jdownloads'; } }