primo commit
This commit is contained in:
24
components/com_jem/helpers/category.php
Normal file
24
components/com_jem/helpers/category.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* @package JEM
|
||||
* @copyright (C) 2013-2024 joomlaeventmanager.net
|
||||
* @copyright (C) 2005-2009 Christoph Lukes
|
||||
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Categories\Categories;
|
||||
|
||||
/**
|
||||
* Content Component Category Tree
|
||||
*/
|
||||
class JEM2Categories extends Categories
|
||||
{
|
||||
public function __construct($options = array())
|
||||
{
|
||||
$options['table'] = '#__jem_categories';
|
||||
$options['extension'] = 'com_jem';
|
||||
parent::__construct($options);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user