1 <?php
2 /**
3 * @package Joomla.Platform
4 * @subpackage Document
5 *
6 * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
7 * @license GNU General Public License version 2 or later; see LICENSE
8 */
9
10 defined('JPATH_PLATFORM') or die;
11
12 JLog::add('JDocumentRendererAtom is deprecated, use JDocumentRendererFeedAtom instead.', JLog::WARNING, 'deprecated');
13
14 /**
15 * JDocumentRendererAtom is a feed that implements the atom specification
16 *
17 * Please note that just by using this class you won't automatically
18 * produce valid atom files. For example, you have to specify either an editor
19 * for the feed or an author for every single feed item.
20 *
21 * @link http://www.atomenabled.org/developers/syndication/atom-format-spec.php
22 * @since 11.1
23 * @deprecated 4.0 Use JDocumentRendererFeedAtom instead
24 */
25 class JDocumentRendererAtom extends JDocumentRendererFeedAtom
26 {
27 }
28