| Current Path : /home/smartconb/www/armencom33/components/com_eventgallery/src/Helper/ |
| Current File : /home/smartconb/www/armencom33/components/com_eventgallery/src/Helper/Category.php |
<?php
/**
* @package Sven.Bluege
* @subpackage com_eventgallery
*
* @copyright Copyright (C) 2005 - 2019 Sven Bluege All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Svenbluege\Component\Eventgallery\Site\Helper;
defined('_JEXEC') or die;
/**
* Eventgallery Component Category Tree
*
*/
class Category extends \Joomla\CMS\Categories\Categories
{
public function __construct($options = array())
{
$options['table'] = '#__eventgallery_folder';
$options['extension'] = 'com_eventgallery';
$options['statefield'] ='published';
parent::__construct($options);
}
}