API17

Difference between revisions of "JTableNested::rebuild"

From Joomla! Documentation

(Updated to r1448:247ba8d88526)
m (preparing for archive only)
 
(4 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
Method to recursively rebuild the whole nested set tree.  
 
Method to recursively rebuild the whole nested set tree.  
  
{{Description:JTableNested::rebuild}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JTableNested::rebuild|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
<source lang="php">
 
<source lang="php">
 
public function rebuild (
 
public function rebuild (
Line 49: Line 47:
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JTableNested::rebuild source code''' on [[jplatform:database/tablenested.php#cl-1266|BitBucket]]
 
* {{JVer|11.1}} '''JTableNested::rebuild source code''' on [[jplatform:database/tablenested.php#cl-1266|BitBucket]]
* {{JVer|11.1}} Class [[JTableNested/11.1|JTableNested]]
+
* {{JVer|11.1}} Class [[API17:JTableNested|JTableNested]]
* {{JVer|11.1}} Subpackage [[Subpackage_Database/11.1|Database]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Database|Database]]
* [[JTableNested::rebuild|Other versions of JTableNested::rebuild]]
+
* [[API17:JTableNested::rebuild|Other versions of JTableNested::rebuild]]
{{SeeAlso:JTableNested::rebuild}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JTableNested::rebuild|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
 
===User contributed notes===
 
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JTableNested::rebuild
 
category=JTableNested::rebuild
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
Line 67: Line 63:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JTableNested]][[Category:JTableNested::rebuild]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:50, 24 March 2017

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JTableNested::rebuild[edit]

Description[edit]

Method to recursively rebuild the whole nested set tree.


public function rebuild (
        $parentId=null
        $leftId=0
        $level=0
        $path= ''
)
Parameter Type Default Description
$parentId integer null The root of the tree to rebuild.
$leftId integer 0 The left id to start with in building the tree.
$level integer 0 The level to assign to the current nodes.
$path string The path to the current nodes.
  • Returns integer 1 + value of root rgt on success, false on failure
  • Defined on line 1274 of libraries/joomla/database/tablenested.php
  • Since Joomla 11.1

See also[edit]


User contributed notes[edit]

Code Examples[edit]