<?php
/**
* @version $Id: content.php 20196 2011-01-09 02:40:25Z ian $
* @package Joomla.Framework
* @subpackage HTML
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
/**
* Utility class to fire onContentPrepare for non-article based content.
*
* @package Joomla.Framework
* @subpackage HTML
* @since 1.5
*/
abstract class JHtmlContent
{
/**
* Fire onContentPrepare for content that isn't part of an article.
*
* @param string The content to be transformed.
* @param array The content params.
* @return string The content after transformation.
*/
public static function prepare($text, $params = null)
{
if ($params === null) {
$params = new JObject;
}
$article = new stdClass;
$article->text = $text;
JPluginHelper::importPlugin('content');
$dispatcher = JDispatcher::getInstance();
$results = $dispatcher->trigger(
'onContentPrepare', array ('text', &$article, &$params, 0)
);
return $article->text;
}
}