2017-08-20 17:52:35 +00:00
|
|
|
<?php
|
2018-05-18 06:28:27 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
2020-02-17 20:01:02 +00:00
|
|
|
* @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
|
2018-05-18 06:28:27 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2017-08-20 17:52:35 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Componentbuilder Field Component Category Tree
|
|
|
|
*/
|
2020-05-29 01:01:07 +00:00
|
|
|
class ComponentbuilderFieldCategories extends JCategories
|
2017-08-20 17:52:35 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Class constructor
|
|
|
|
*
|
|
|
|
* @param array $options Array of options
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function __construct($options = array())
|
|
|
|
{
|
|
|
|
$options['table'] = '#__componentbuilder_field';
|
2020-05-29 01:01:07 +00:00
|
|
|
$options['extension'] = 'com_componentbuilder.field';
|
2017-08-20 17:52:35 +00:00
|
|
|
|
|
|
|
parent::__construct($options);
|
|
|
|
}
|
|
|
|
}
|