30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-06-06 08:20:50 +00:00
weblinks/src/components/com_weblinks/helpers/category.php

34 lines
653 B
PHP
Raw Normal View History

<?php
/**
* @package Joomla.Administrator
* @subpackage Weblinks
*
2017-02-13 16:20:35 +00:00
* @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
/**
* Weblinks Component Category Tree.
*
* @since 1.6
*/
class WeblinksCategories extends JCategories
{
2015-02-18 01:20:59 +00:00
/**
* Constructor
*
* @param array $options Array of options
*
* @since 1.6
*/
public function __construct($options = array())
{
$options['table'] = '#__weblinks';
$options['extension'] = 'com_weblinks';
2015-02-18 01:20:59 +00:00
parent::__construct($options);
}
}