@copyright Copyright (C) 2015. All Rights Reserved @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html A sermon distributor that links to Dropbox. /-----------------------------------------------------------------------------------------------------------------------------*/ // No direct access to this file defined('_JEXEC') or die('Restricted access'); /** * Sermondistributor Sermon Component Category Tree */ class SermondistributorSermonsCategories extends JCategories { /** * Class constructor * * @param array $options Array of options * */ public function __construct($options = array()) { $options['table'] = '#__sermondistributor_sermon'; $options['extension'] = 'com_sermondistributor.sermons'; parent::__construct($options); } }