30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-06-21 23:42:23 +00:00
weblinks/src/components/com_weblinks/src/View/Category/FeedView.php

31 lines
710 B
PHP
Raw Normal View History

<?php
2023-05-18 16:45:59 +00:00
/**
2017-05-16 06:03:22 +00:00
* @package Joomla.Site
* @subpackage com_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
*/
2021-06-19 14:17:09 +00:00
namespace Joomla\Component\Weblinks\Site\View\Category;
use Joomla\CMS\MVC\View\CategoryFeedView;
2023-05-18 16:45:59 +00:00
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* HTML View class for the WebLinks component
*
* @since 1.0
*/
2021-06-19 14:17:09 +00:00
class FeedView extends CategoryFeedView
{
2023-05-18 16:45:59 +00:00
/**
* @var string The name of the view to link individual items to
* @since 3.2
*/
protected $viewName = 'weblink';
}