API15:JRouter/attachParseRule
From Joomla! Documentation
Description
Attach a parse rule
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
attachParseRule($callback)
| Parameter Name | Default Value | Description |
|---|---|---|
| $callback | $callback The function to be called. |
Defined in
libraries/joomla/application/router.php
Importing
jimport( 'joomla.application.router' );
Source Body
function attachParseRule($callback)
{
$this->_rules['parse'][] = $callback;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples