mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 19:38:53 +00:00
[ticket/11495] Fix some more comments and the package tag
PHPBB3-11495
This commit is contained in:
parent
87e8e60d3c
commit
863d0c7687
9 changed files with 12 additions and 12 deletions
|
@ -99,7 +99,7 @@ interface phpbb_tree_interface
|
||||||
public function get_path_and_subtree_data($item_id, $order_asc, $include_item);
|
public function get_path_and_subtree_data($item_id, $order_asc, $include_item);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get all ancestors items of the item
|
* Get all ancestors of the item
|
||||||
*
|
*
|
||||||
* @param int $item_id The item id to get the ancestors from
|
* @param int $item_id The item id to get the ancestors from
|
||||||
* @param bool $order_asc Order the items ascending (most outer ancestor first)
|
* @param bool $order_asc Order the items ascending (most outer ancestor first)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package tree - nestedset
|
* @package tree
|
||||||
* @copyright (c) 2013 phpBB Group
|
* @copyright (c) 2013 phpBB Group
|
||||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
*
|
*
|
||||||
|
@ -50,7 +50,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
|
||||||
protected $sql_where = '';
|
protected $sql_where = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* List of item properties to be cached in $item_parents
|
* List of item properties to be cached in the item_parents column
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $item_basic_data = array('*');
|
protected $item_basic_data = array('*');
|
||||||
|
@ -746,11 +746,11 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
|
||||||
* problems:
|
* problems:
|
||||||
* - The set has a duplicated value inside the left/right id chain
|
* - The set has a duplicated value inside the left/right id chain
|
||||||
* - The set has a missing value inside the left/right id chain
|
* - The set has a missing value inside the left/right id chain
|
||||||
* - The set has items that do not have a left/right is set
|
* - The set has items that do not have a left/right id set
|
||||||
*
|
*
|
||||||
* When regenerating the items, the items are sorted by parent id and their
|
* When regenerating the items, the items are sorted by parent id and their
|
||||||
* current left id, so the current child/parent relationships are kept
|
* current left id, so the current child/parent relationships are kept
|
||||||
* and running the function on a working set will not change any orders.
|
* and running the function on a working set will not change the order.
|
||||||
*
|
*
|
||||||
* @param int $new_id First left_id to be used (should start with 1)
|
* @param int $new_id First left_id to be used (should start with 1)
|
||||||
* @param int $parent_id parent_id of the current set (default = 0)
|
* @param int $parent_id parent_id of the current set (default = 0)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package tree - nestedset forum
|
* @package tree
|
||||||
* @copyright (c) 2013 phpBB Group
|
* @copyright (c) 2013 phpBB Group
|
||||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package tree - nestedset forum
|
* @package tree
|
||||||
* @copyright (c) 2013 phpBB Group
|
* @copyright (c) 2013 phpBB Group
|
||||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package tree - nestedset forum
|
* @package tree
|
||||||
* @copyright (c) 2013 phpBB Group
|
* @copyright (c) 2013 phpBB Group
|
||||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package tree - nestedset forum
|
* @package tree
|
||||||
* @copyright (c) 2013 phpBB Group
|
* @copyright (c) 2013 phpBB Group
|
||||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package tree - nestedset forum
|
* @package tree
|
||||||
* @copyright (c) 2013 phpBB Group
|
* @copyright (c) 2013 phpBB Group
|
||||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package tree - nestedset forum
|
* @package tree
|
||||||
* @copyright (c) 2013 phpBB Group
|
* @copyright (c) 2013 phpBB Group
|
||||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package tree - nestedset forum
|
* @package tree
|
||||||
* @copyright (c) 2013 phpBB Group
|
* @copyright (c) 2013 phpBB Group
|
||||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue