Your IP : 10.10.0.253


Current Path : /var/www/components/com_jcomments/plugins/
Upload File :
Current File : /var/www/components/com_jcomments/plugins/com_mijovoice.plugin.php

<?php
/**
 * JComments plugin for MijoVoice support
 *
 * @version 3.0
 * @package JComments
 * @author Mijosoft LLC
 * @copyright (C) 2009-2013 Mijosoft LLC, mijosoft.com
 * @copyright (C) 2009-2013 by Sergey M. Litvinov (http://www.joomlatune.ru)
 * @license GNU/GPL: http://www.gnu.org/copyleft/gpl.html
 */

defined('_JEXEC') or die;

class jc_com_mijovoice extends JCommentsPlugin
{
	function getObjectInfo($id, $language = null)
	{
		$info = new JCommentsObjectInfo();

		$helper = JPATH_ADMINISTRATOR . '/components/com_mijovoice/library/mijovoice.php';
		if (is_file($helper)) {
			require_once($helper);

			$db = JFactory::getDbo();
			$query = $db->getQuery(true);

			$query->select('id, title, user_id');
			$query->from('#__mijovoice_ideas');
			$query->where('id = ' . (int) $id);

			$db->setQuery($query);
			$row = $db->loadObject();

			if (!empty($row)) {
				$Itemid = MijoVoice::get('utility')->getItemid(array('ideas'), null, false);
				$Itemid = $Itemid > 0 ? '&Itemid=' . $Itemid : '';

				$info->title = $row->title;
				$info->userid = $row->user_id;
				$info->link = JRoute::_('index.php?option=com_mijovoice&view=idea&idea_id=' . $id . $Itemid);
			}
		}

		return $info;
	}
}