diff options
author | Máté Bartus <mate.bartus@gmail.com> | 2015-08-28 10:39:07 +0200 |
---|---|---|
committer | Máté Bartus <mate.bartus@gmail.com> | 2015-08-28 10:39:07 +0200 |
commit | e8219e8610d37dc6fe3c15a5f9c4ab2664335ed7 (patch) | |
tree | 4da29c32130850ca1f2cd934cbf8d55cbcc52a10 /phpBB/phpbb/feed/forums.php | |
parent | 6dc195e5a7a521478502680d4fb168ec03e13422 (diff) | |
parent | c9ec16f6149f104c016980375c8fd04a31e57616 (diff) | |
download | forums-e8219e8610d37dc6fe3c15a5f9c4ab2664335ed7.tar forums-e8219e8610d37dc6fe3c15a5f9c4ab2664335ed7.tar.gz forums-e8219e8610d37dc6fe3c15a5f9c4ab2664335ed7.tar.bz2 forums-e8219e8610d37dc6fe3c15a5f9c4ab2664335ed7.tar.xz forums-e8219e8610d37dc6fe3c15a5f9c4ab2664335ed7.zip |
Merge pull request #3470 from Nicofuma/ticket/13645
[ticket/13645] Move the feeds to controllers
Diffstat (limited to 'phpBB/phpbb/feed/forums.php')
-rw-r--r-- | phpBB/phpbb/feed/forums.php | 49 |
1 files changed, 29 insertions, 20 deletions
diff --git a/phpBB/phpbb/feed/forums.php b/phpBB/phpbb/feed/forums.php index ee14a5bc76..92f2b2dd4d 100644 --- a/phpBB/phpbb/feed/forums.php +++ b/phpBB/phpbb/feed/forums.php @@ -1,29 +1,32 @@ <?php /** -* -* This file is part of the phpBB Forum Software package. -* -* @copyright (c) phpBB Limited <https://www.phpbb.com> -* @license GNU General Public License, version 2 (GPL-2.0) -* -* For full copyright and license information, please see -* the docs/CREDITS.txt file. -* -*/ + * + * This file is part of the phpBB Forum Software package. + * + * @copyright (c) phpBB Limited <https://www.phpbb.com> + * @license GNU General Public License, version 2 (GPL-2.0) + * + * For full copyright and license information, please see + * the docs/CREDITS.txt file. + * + */ namespace phpbb\feed; /** -* 'All Forums' feed -* -* This will give you a list of all postable forums where feeds are enabled -* including forum description, topic stats and post stats -*/ -class forums extends \phpbb\feed\base + * 'All Forums' feed + * + * This will give you a list of all postable forums where feeds are enabled + * including forum description, topic stats and post stats + */ +class forums extends base { - var $num_items = 0; + protected $num_items = 0; - function set_keys() + /** + * {@inheritdoc} + */ + public function set_keys() { $this->set('title', 'forum_name'); $this->set('text', 'forum_desc'); @@ -33,7 +36,10 @@ class forums extends \phpbb\feed\base $this->set('options', 'forum_desc_options'); } - function get_sql() + /** + * {@inheritdoc} + */ + public function get_sql() { $in_fid_ary = array_diff($this->get_readable_forums(), $this->get_excluded_forums()); if (empty($in_fid_ary)) @@ -55,7 +61,10 @@ class forums extends \phpbb\feed\base return true; } - function adjust_item(&$item_row, &$row) + /** + * {@inheritdoc} + */ + public function adjust_item(&$item_row, &$row) { $item_row['link'] = $this->helper->append_sid('viewforum.' . $this->phpEx, 'f=' . $row['forum_id']); |