aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/tree/nestedset_forum.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/tree/nestedset_forum.php')
-rw-r--r--phpBB/includes/tree/nestedset_forum.php38
1 files changed, 16 insertions, 22 deletions
diff --git a/phpBB/includes/tree/nestedset_forum.php b/phpBB/includes/tree/nestedset_forum.php
index 0a66e68915..7dcb12331c 100644
--- a/phpBB/includes/tree/nestedset_forum.php
+++ b/phpBB/includes/tree/nestedset_forum.php
@@ -18,25 +18,6 @@ if (!defined('IN_PHPBB'))
class phpbb_tree_nestedset_forum extends phpbb_tree_nestedset
{
/**
- * Column names in the table
- * @var string
- */
- protected $column_item_id = 'forum_id';
- protected $column_item_parents = 'forum_parents';
-
- /**
- * Prefix for the language keys returned by exceptions
- * @var string
- */
- protected $message_prefix = 'FORUM_NESTEDSET_';
-
- /**
- * List of item properties to be cached in $item_parents
- * @var array
- */
- protected $item_basic_data = array('forum_id', 'forum_name', 'forum_type');
-
- /**
* Construct
*
* @param phpbb_db_driver $db Database connection
@@ -45,8 +26,21 @@ class phpbb_tree_nestedset_forum extends phpbb_tree_nestedset
*/
public function __construct(phpbb_db_driver $db, phpbb_lock_db $lock, $table_name)
{
- $this->db = $db;
- $this->lock = $lock;
- $this->table_name = $table_name;
+ parent::__construct(
+ $db,
+ $lock,
+ $table_name,
+ 'FORUM_NESTEDSET_',
+ '',
+ array(
+ 'forum_id',
+ 'forum_name',
+ 'forum_type',
+ ),
+ array(
+ 'item_id' => 'forum_id',
+ 'item_parents' => 'forum_parents',
+ )
+ );
}
}