Joomla! PHP Cross Reference Web Portals

Source: /components/com_weblinks/helpers/category.php - 28 lines - 621 bytes - Summary - Text - Print

   1  <?php
   2  /**
   3   * @package     Joomla.Site
   4   * @subpackage  com_weblinks
   5   *
   6   * @copyright   Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
   7   * @license     GNU General Public License version 2 or later; see LICENSE.txt
   8   */
   9  
  10  defined('_JEXEC') or die;
  11  
  12  /**
  13   * Weblinks Component Category Tree
  14   *
  15   * @static
  16   * @package     Joomla.Site
  17   * @subpackage  com_weblinks
  18   * @since       1.6
  19   */
  20  class WeblinksCategories extends JCategories
  21  {
  22  	public function __construct($options = array())
  23      {
  24          $options['table'] = '#__weblinks';
  25          $options['extension'] = 'com_weblinks';
  26          parent::__construct($options);
  27      }
  28  }

title

Description

title

Description

title

Description

title

title

Body