Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
*
* @copyright (C) 2009 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*
* @deprecated 6.0 will be removed in 8.0
*/

namespace Joomla\Component\Content\Administrator\Controller;
Expand Down
28 changes: 28 additions & 0 deletions administrator/components/com_content/src/Model/FeaturedModel.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

/**
* @package Joomla.Administrator
* @subpackage com_content
*
* @copyright (C) 2009 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

namespace Joomla\Component\Content\Administrator\Model;

// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects

/**
* Methods supporting a list of featured article records.
*
* @since 1.6
*
* @deprecated 6.0 will be removed in 8.0
* Use \Joomla\Component\Content\Administrator\Model\ArticlesModel instead
* set the filter.featured state to 1 to get only featured articles
*/
class FeaturedModel extends ArticlesModel
{
}