aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/feed/forums.php
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@sensiolabs.com>2015-08-06 14:20:06 +0200
committerTristan Darricau <tristan.darricau@sensiolabs.com>2015-08-23 22:36:10 +0200
commit5df9a4547337ef90300c21d0f997bc67e43cba9e (patch)
treef27c76c11fdd67dc1b38359bae247f80be446ed1 /phpBB/phpbb/feed/forums.php
parent8e5e954438b232f4ce7aec6a5db3d52b974c07a8 (diff)
downloadforums-5df9a4547337ef90300c21d0f997bc67e43cba9e.tar
forums-5df9a4547337ef90300c21d0f997bc67e43cba9e.tar.gz
forums-5df9a4547337ef90300c21d0f997bc67e43cba9e.tar.bz2
forums-5df9a4547337ef90300c21d0f997bc67e43cba9e.tar.xz
forums-5df9a4547337ef90300c21d0f997bc67e43cba9e.zip
[ticket/13645] Proper OOP for feeds
PHPBB3-13645
Diffstat (limited to 'phpBB/phpbb/feed/forums.php')
-rw-r--r--phpBB/phpbb/feed/forums.php49
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']);