aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/nestedset/base.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11495] Rename set_parent to change_parent()Joas Schilling2013-04-251-1/+1
| | | | PHPBB3-11495
* [ticket/11495] Rename fix function to regenerate_left_right_ids()Joas Schilling2013-04-251-2/+2
| | | | | | | | | | | | | | | This method regenerates the left/right ids for the nested set based on the parent/child relations. This function executes three queries per item, so it should only be called, when the set has one of the following problems: - 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 items that do not have a left/right is set When regenerating the items, the items are sorted by parent id and their current left id, so the current child/parent relationships are kept and running the function on a working set will not change any orders. PHPBB3-11495
* [ticket/11495] Do not compare to null anymore (left over from item class)Joas Schilling2013-04-251-2/+2
| | | | PHPBB3-11495
* [ticket/11495] Use item ids instead of requiring all dataJoas Schilling2013-04-191-18/+77
| | | | | | | The data is grabbed again in most cases anyway, so it just makes the system easier to use. PHPBB3-11495
* [ticket/11495] Cast some values to intJoas Schilling2013-04-191-5/+5
| | | | PHPBB3-11495
* [ticket/11495] Use item_id only as parameter for delete() and remove()Joas Schilling2013-04-191-6/+7
| | | | | | The data is acquired again anyway PHPBB3-11495
* [ticket/11495] Use item_id only as parameter for get_branch_data()Joas Schilling2013-04-191-13/+6
| | | | PHPBB3-11495
* [ticket/11495] Fix Spacing and lowercase on docsJoas Schilling2013-04-191-5/+5
| | | | PHPBB3-11495
* [ticket/11495] Acquire locks for operations that manipulate the treeJoas Schilling2013-04-181-9/+66
| | | | PHPBB3-11495
* [ticket/11495] Remove item class as its no longer requiredJoas Schilling2013-04-181-3/+0
| | | | PHPBB3-11495
* [ticket/11495] Manually specify the table columnsJoas Schilling2013-04-181-2/+2
| | | | PHPBB3-11495
* [ticket/11495] Move nestedset default values to new methodJoas Schilling2013-04-181-8/+21
| | | | PHPBB3-11495
* [ticket/11495] Fix column variable namesJoas Schilling2013-04-181-5/+5
| | | | PHPBB3-11495
* [ticket/11495] Use array directly instead of phpbb_nestedset_item_interfaceJoas Schilling2013-04-181-78/+72
| | | | PHPBB3-11495
* [ticket/11495] Fix description of get_sql_whereJoas Schilling2013-04-171-3/+1
| | | | PHPBB3-11495
* [ticket/11495] Use unique properties for the column namesJoas Schilling2013-04-171-94/+92
| | | | PHPBB3-11495
* [ticket/11495] Add abstract implementation of the interfaceJoas Schilling2013-04-161-0/+632
PHPBB3-11495