weblinks/src/components/com_weblinks/helpers/category.php

34 lines
648 B
PHP
Raw Normal View History

<?php
/**
* @package Joomla.Site
* @subpackage com_weblinks
*
2015-02-18 00:35:48 +00:00
* @copyright Copyright (C) 2005 - 2015 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);
}
}