Your IP : 10.10.0.253


Current Path : /var/www/components/com_jcomments/helpers/
Upload File :
Current File : /var/www/components/com_jcomments/helpers/event.php

<?php
/**
 * JComments - Joomla Comment System
 *
 * @version 3.0
 * @package JComments
 * @author Sergey M. Litvinov (smart@joomlatune.ru)
 * @copyright (C) 2006-2013 by Sergey M. Litvinov (http://www.joomlatune.ru)
 * @license GNU/GPL: http://www.gnu.org/copyleft/gpl.html
 */

defined('_JEXEC') or die;

/**
 * JComments Event Helper
 */
class JCommentsEventHelper
{
	/**
	 * Triggers an event by dispatching arguments to all observers that handle
	 * the event and returning their return values.
	 *
	 * @param string $event The event name
	 * @param array $args An array of arguments
	 * @return array An array of results from each function call
	 */
	public static function trigger($event, $args = null)
	{
		static $initialised = false;

		$result = array();

		if (JCommentsFactory::getConfig()->getInt('enable_plugins') == 1) {
			if (!$initialised) {
				JPluginHelper::importPlugin('jcomments');
				$initialised = true;
			}

			if (version_compare(JVERSION, '3.0', 'ge')) {
				$dispatcher = JEventDispatcher::getInstance();
			} else {
				$dispatcher = JDispatcher::getInstance();
			}

			$result = $dispatcher->trigger($event, $args);
		}
		return $result;
	}
}