You've already forked joomla_test
first commit
This commit is contained in:
25
administrator/components/com_content/tables/featured.php
Normal file
25
administrator/components/com_content/tables/featured.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_content
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_content
|
||||
*/
|
||||
class ContentTableFeatured extends JTable
|
||||
{
|
||||
/**
|
||||
* @param JDatabaseDriver A database connector object
|
||||
*/
|
||||
public function __construct(&$db)
|
||||
{
|
||||
parent::__construct('#__content_frontpage', 'content_id', $db);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user