API15:JHTMLContent/prepare
From Joomla! Documentation
Description
Fire onPrepareContent for content that isn't part of an article.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
prepare($text, $params=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $text | The content to be transformed. | |
| $params | null | The content params. |
Returns
string The content after transformation.
Defined in
libraries/joomla/html/html/content.php
Importing
jimport( 'joomla.html.html.content' );
Source Body
function prepare($text, $params = null)
{
if ($params === null) {
$params = array();
}
/*
* Create a skeleton of an article. This is a bit of a hack.
*/
$nodb = null;
$article = new JTableContent($nodb);
$article->text = $text;
JPluginHelper::importPlugin('content');
$dispatcher = &JDispatcher::getInstance();
$results = $dispatcher->trigger(
'onPrepareContent', array (&$article, &$params, 0)
);
return $article->text;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples