@copyright Copyright (C) 2015. All Rights Reserved @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html Questions & Answers /-----------------------------------------------------------------------------------------------------------------------------*/ // No direct access to this file defined('_JEXEC') or die('Restricted access'); /** * Questionsanswers Question_and_answer Component Category Tree */ class QuestionsanswersQuestion_and_answerCategories extends JCategories { /** * Class constructor * * @param array $options Array of options * */ public function __construct($options = array()) { $options['table'] = '#__questionsanswers_question_and_answer'; $options['extension'] = 'com_questionsanswers.question_and_answer'; parent::__construct($options); } }