Your IP : 216.73.216.85


Current Path : /home/smartconb/www/armencom33/components/com_dpcalendar/helpers/
Upload File :
Current File : /home/smartconb/www/armencom33/components/com_dpcalendar/helpers/category.php

<?php

use Joomla\CMS\Categories\Categories;

/**
 * @package   DPCalendar
 * @copyright Copyright (C) 2014 Digital Peak GmbH. <https://www.digital-peak.com>
 * @license   https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
 */
defined('_JEXEC') or die();

JLoader::import('joomla.application.component.helper');
JLoader::import('joomla.application.categories');

class DPCalendarCategories extends Categories
{
	public function __construct($options = [])
	{
		$options['table']      = '#__dpcalendar_events';
		$options['extension']  = 'com_dpcalendar';
		$options['countItems'] = false;
		parent::__construct($options);
	}
}