API16:JDocumentHTML/countModules
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Count the modules based on the given condition
Description:JDocumentHTML/countModules
Syntax
countModules($condition)
| Parameter Name | Default Value | Description |
|---|---|---|
| $condition | $condition The condition to use |
Returns
integer Number of modules found
Defined in
libraries/joomla/document/html/html.php
Importing
jimport( 'joomla.document.html.html' );
Source Body
function countModules($condition) { $result = ''; $operators = '(\+|\-|\*|\/|==|\!=|\<\>|\<|\>|\<\=|\>\=|and|or|xor) '; $words = preg_split('# '.$operators.' #', $condition, null, PREG_SPLIT_DELIM_CAPTURE); for ($i = 0, $n = count($words); $i < $n; $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] SeeAlso:JDocumentHTML/countModules
Examples
<CodeExamplesForm />
