Current Path :
/
home
/
develito
/
www
/
components
/
com_dmod
/
helpers
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/www/components/com_dmod/helpers/category.php
<?php /*------------------------------------------------------------------------ # com_dmod - Dmod Module Manager # ------------------------------------------------------------------------ # author Jesus Vargas Garita # copyright Copyright (C) 2010 www.joomlahill.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # Websites: http://www.joomlahill.com # Technical Support: Forum - http://www.joomlahill.com/forum -------------------------------------------------------------------------*/ // No direct access defined('_JEXEC') or die; jimport('joomla.application.component.helper'); jimport('joomla.application.categories'); class DmodCategories extends JCategories { public function __construct($options = array()) { $options['table'] = '#__dmod'; $options['extension'] = 'com_dmod'; $options['statefield'] = 'published'; parent::__construct($options); } }