1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-26 13:16:14 +01:00

[ticket/11495] Add forum implementation of nestedset

PHPBB3-11495
This commit is contained in:
Joas Schilling
2013-04-16 23:09:21 +02:00
parent 0d5efcc1d5
commit 57a05e7cf5
3 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?php
/**
*
* @package Nested Set
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
class phpbb_nestedset_item_forum extends phpbb_nestedset_item_base
{
public function __construct(array $forum_row)
{
$this->item_id = (int) $forum_row['forum_id'];
$this->parent_id = (int) $forum_row['parent_id'];
$this->left_id = (int) $forum_row['left_id'];
$this->right_id = (int) $forum_row['right_id'];
$this->item_parents_data = (string) $forum_row['forum_parents'];
}
}