| Current Path : /var/www/components/com_jcomments/plugins/ |
| Current File : /var/www/components/com_jcomments/plugins/com_cobalt.plugin.php |
<?php
/**
* JComments plugin for Cobalt 7 & 8
*
* @version 2.3
* @package JComments
* @author Sergey M. Litvinov (smart@joomlatune.ru)
* @copyright (C) 2012 by Sergey Romanov
* @copyright (C) 2012-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_cobalt extends JCommentsPlugin
{
function getObjectInfo($id, $language = null)
{
$info = new JCommentsObjectInfo();
$helper = JPATH_ROOT.'/components/com_cobalt/library/php/helper.php';
if (version_compare(JVERSION, '3.0', 'ge'))
{
$helper = JPATH_ROOT.'/components/com_cobalt/library/php/helpers/helper.php';
}
if (is_file($helper)) {
require_once($helper);
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select('*');
$query->from('#__js_res_record');
$query->where('id = ' . (int)$id);
$db->setQuery($query);
$record = $db->loadObject();
if (!empty($record)) {
$info->title = $record->title;
$info->access = $record->access;
$info->userid = $record->user_id;
$info->link = JRoute::_(Url::record($record));
}
}
return $info;
}
}