API15

JDocumentHTML/countModules

From Joomla! Documentation

< API15:JDocumentHTML
Revision as of 17:18, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Count the modules based on the given condition <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JDocumentHTML/countModules|Edit Desc...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The "API15" 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 modules based on the given condition

[Edit Descripton]

Template:Description:JDocumentHTML/countModules

Syntax[edit]

countModules($condition)
Parameter Name Default Value Description
$condition $condition The condition to use

Returns[edit]

integer Number of modules found

Defined in[edit]

libraries/joomla/document/html/html.php

Importing[edit]

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

Source Body[edit]

function countModules($condition)
{
        $result = '';

        $words = explode(' ', $condition);
        for($i = 0; $i < count($words); $i+=2)
        {
                // odd parts (modules)
                $name           = strtolower($words[$i]);
                $words[$i]      = ((isset($this->_buffer['modules'][$name])) && ($this->_buffer['modules'][$name] === false)) ? 0 : count(JModuleHelper::getModules($name));
        }

        $str = 'return '.implode(' ', $words).';';

        return eval($str);
}

[Edit See Also] Template:SeeAlso:JDocumentHTML/countModules

Examples[edit]

<CodeExamplesForm />