aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11495] Fix some more comments and the package tagJoas Schilling2013-04-303-6/+6
| | | | PHPBB3-11495
* [ticket/11495] Correctly distinguish between children and descendantsJoas Schilling2013-04-301-4/+4
| | | | PHPBB3-11495
* [ticket/11495] Use descendants and ancestors instead of parents/childrenJoas Schilling2013-04-302-23/+23
| | | | PHPBB3-11495
* [ticket/11495] Remove get_parent_data from interface and rename itJoas Schilling2013-04-302-12/+6
| | | | | | | The method is implementation specific and has no use, apart from cache, that is not covered by get_path_data(). PHPBB3-11495
* [ticket/11495] Fix some docs and replace branch with other termsJoas Schilling2013-04-302-22/+22
| | | | PHPBB3-11495
* [ticket/11495] Fix doc blocks once moreJoas Schilling2013-04-262-6/+6
| | | | PHPBB3-11495
* [ticket/11495] Make method names for add/remove more descriptiveJoas Schilling2013-04-261-4/+4
| | | | PHPBB3-11495
* [ticket/11495] Fix comments and package docsJoas Schilling2013-04-253-5/+5
| | | | PHPBB3-11495
* [ticket/11495] Use constructor arguments over properties in implementationJoas Schilling2013-04-252-22/+47
| | | | PHPBB3-11495
* [ticket/11495] Remove add/remove from the interfaceJoas Schilling2013-04-252-23/+13
| | | | PHPBB3-11495
* [ticket/11495] Remove fixing function from tree interfaceJoas Schilling2013-04-252-29/+24
| | | | | | The fixing function is implementation dependent. PHPBB3-11495
* [ticket/11495] Move classes to tree/ as they all implement a treeJoas Schilling2013-04-253-6/+6
| | | | PHPBB3-11495
* [ticket/11495] Explain use of set_subset_zero on remove_subset()Joas Schilling2013-04-251-2/+4
| | | | PHPBB3-11495
* [ticket/11495] Use default exceptionsJoas Schilling2013-04-252-34/+14
| | | | PHPBB3-11495
* [ticket/11495] Explain what "given item" meansJoas Schilling2013-04-252-4/+4
| | | | PHPBB3-11495
* [ticket/11495] Split get_branch_data into multiple methodsJoas Schilling2013-04-252-21/+62
| | | | PHPBB3-11495
* [ticket/11495] Rename set_parent to change_parent()Joas Schilling2013-04-252-3/+5
| | | | PHPBB3-11495
* [ticket/11495] Explain whether move_children prepends/appends/overwrittesJoas Schilling2013-04-251-0/+3
| | | | PHPBB3-11495
* [ticket/11495] Rename fix function to regenerate_left_right_ids()Joas Schilling2013-04-252-4/+16
| | | | | | | | | | | | | | | 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] Explain move() moreJoas Schilling2013-04-251-0/+4
| | | | | | | | An item is only moved up/down within the same parent. If the delta is larger then the number of children, the item is moved to the top/bottom of the list of children within this parent. 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-192-31/+90
| | | | | | | 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-192-12/+13
| | | | | | The data is acquired again anyway PHPBB3-11495
* [ticket/11495] Use item_id only as parameter for get_branch_data()Joas Schilling2013-04-192-16/+9
| | | | PHPBB3-11495
* [ticket/11495] Fix Spacing and lowercase on docsJoas Schilling2013-04-192-7/+7
| | | | PHPBB3-11495
* [ticket/11495] Remove acquire locks from forum implementationJoas Schilling2013-04-181-63/+2
| | | | 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-182-6/+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-182-7/+7
| | | | PHPBB3-11495
* [ticket/11495] Remove item classesJoas Schilling2013-04-183-171/+0
| | | | PHPBB3-11495
* [ticket/11495] Use array directly instead of phpbb_nestedset_item_interfaceJoas Schilling2013-04-183-103/+97
| | | | 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-172-102/+95
| | | | PHPBB3-11495
* [ticket/11495] Add forum implementation of nestedsetJoas Schilling2013-04-163-0/+169
| | | | PHPBB3-11495
* [ticket/11495] Add abstract implementation of the interfaceJoas Schilling2013-04-162-0/+714
| | | | PHPBB3-11495
* [ticket/11495] Add basic interface with nestedset operationsJoas Schilling2013-04-162-0/+192
| | | | PHPBB3-11495
* [ticket/11488] Use correct base class in email notification methodMarc Alexander2013-04-152-2/+2
| | | | | | | | | In ticket/11451 this was not correctly changed to reflect the new class phpbb_notifcation_method_messenger_base. Additionally, an undefined variable error has been fixed in messenger_base.php (change should be confirmed by bantu though). PHPBB3-11488
* Merge branch 'develop-olympus' into developNils Adermann2013-04-121-41/+42
|\ | | | | | | | | | | * develop-olympus: [ticket/11358] Removed all trailing white spaces. [ticket/11358] Fixed the code according to coding guidlines.
| * Merge branch 'ticket/11358' into develop-olympusNils Adermann2013-04-121-41/+42
| |\ | | | | | | | | | | | | | | | * ticket/11358: [ticket/11358] Removed all trailing white spaces. [ticket/11358] Fixed the code according to coding guidlines.
| | * [ticket/11358] Removed all trailing white spaces.erangamapa2013-04-121-4/+4
| | | | | | | | | | | | | | | | | | Removed all trailing white spaces with new lines. PHPBB3-11358
| | * [ticket/11358] Fixed the code according to coding guidlines.erangamapa2013-04-121-42/+43
| | | | | | | | | | | | | | | | | | | | | Added proper indentation and new line after break in switch statement. PHPBB3-11358
* | | [ticket/11116] Made ACP "extension not available" error message E_USER_WARNINGrechosen2013-04-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | The error message generated when an administrator tries to enable an incompatible extension used to be displayed in the green of the default E_USER_NOTICE. Changed it to E_USER_WARNING to make it appear in red, as requested in the ticket. PHPBB3-11116
* | | Merge pull request #1199 from imkingdavid/ticket/11334Nils Adermann2013-04-031-8/+30
|\ \ \ | | | | | | | | [ticket/11334] Properly generate controller URL with helper url() method
| * | | [ticket/11334] Allow parameters to be specified in the routeJoas Schilling2013-03-151-1/+8
| | | | | | | | | | | | | | | | PHPBB3-11334
| * | | [ticket/11334] Use mocks instead of making parameters optionalJoas Schilling2013-03-151-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11334
| * | | [ticket/11334] Expand functionality of helper->url()Joas Schilling2013-03-151-3/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Expanded the functionality of helper->url() to support all parameters of append_sid() itself. PHPBB3-11334
| * | | [ticket/11334] Remove extraneous periodDavid King2013-03-151-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11334