| Current Path : /var/www/components/com_jcomments/plugins/ |
| Current File : /var/www/components/com_jcomments/plugins/com_easyblog.plugin.php |
<?php
/**
* JComments plugin for EasyBlog posts support
*
* @version 2.3
* @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;
class jc_com_easyblog extends JCommentsPlugin
{
function getObjectInfo($id, $language = null)
{
$info = new JCommentsObjectInfo();
$routerHelper = JPATH_ROOT.'/components/com_easyblog/helpers/router.php';
if (is_file($routerHelper)) {
require_once($routerHelper);
$db = JFactory::getDbo();
$db->setQuery('SELECT id, title, created_by, category_id FROM #__easyblog_post WHERE id = ' . $id);
$row = $db->loadObject();
if (!empty($row)) {
$info->category_id = $row->category_id;
$info->title = $row->title;
$info->userid = $row->created_by;
$info->link = EasyBlogRouter::_('index.php?option=com_easyblog&view=entry&id=' . $id);
}
}
return $info;
}
}