API16

Difference between revisions of "JDocumentHTML/countMenuChildren"

From Joomla! Documentation

< API16:JDocumentHTML
(New page: ===Description=== Count the number of child menu items <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JDocumentHTML/countMenuChildren|Edit Descripto...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Count the number of child menu items
 
Count the number of child menu items
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JDocumentHTML/countMenuChildren|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JDocumentHTML/countMenuChildren}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 43: Line 41:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JDocumentHTML/countMenuChildren|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JDocumentHTML/countMenuChildren}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=countMenuChildren
 
  category=countMenuChildren
 
  category=JDocumentHTML
 
  category=JDocumentHTML
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:32, 24 March 2017

The "API16" 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.

Description[edit]

Count the number of child menu items


<! removed transcluded page call, red link never existed >

Syntax[edit]

countMenuChildren()


Returns[edit]

integer Number of child menu items

Defined in[edit]

libraries/joomla/document/html/html.php

Importing[edit]

jimport( 'joomla.document.html.html' );

Source Body[edit]

function countMenuChildren() {
        static $children;
        if (!isset($children)) {
                $dbo = &JFactory::getDbo();
                $menu = &JSite::getMenu();
                $where = Array();
                $active = $menu->getActive();
                if ($active) {
                        $where[] = 'parent = ' . $active->id;
                        $where[] = 'published = 1';
                        $dbo->setQuery('SELECT COUNT(*) FROM #__menu WHERE '. implode(' AND ', $where));
                        $children = $dbo->loadResult();
                } else {
                        $children = 0;
                }
        }

        return $children;
}


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]