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_lyftenbloggie.plugin.php

<?php
/**
 * JComments plugin for LyftenBloggie entries 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_lyftenbloggie extends JCommentsPlugin
{
	function getObjectInfo($id, $language = null)
	{
		$db = JFactory::getDBO();
		$query = "SELECT e.id, e.title, e.created_by, e.created, e.access"
			. ', CASE WHEN CHAR_LENGTH(e.alias) THEN CONCAT_WS(":", e.id, e.alias) ELSE e.id END as slug'
			. ' FROM #__bloggies_entries AS e'
			. ' WHERE e.id = '.$id
			;

		$db->setQuery( $query, 0, 1);
		$entry = $db->loadObject();

		$info = new JCommentsObjectInfo();

		if (!empty($entry)) {
			$routerHelper = JPATH_ROOT.'/components/com_lyftenbloggie/helpers/route.php';
			if (is_file($routerHelper)) {
				include_once(JPATH_SITE.'/includes/application.php');
				include_once(JPATH_SITE.'/components/com_lyftenbloggie/helpers/route.php');
				include_once(JPATH_SITE.'/components/com_lyftenbloggie/router.php');

				$entry->archive	= JHTML::_('date', $entry->created, '&year=%Y&month=%m&day=%d');

				$info->title = $entry->title;
				$info->access = $entry->access;
				$info->userid = $entry->created_by;
				$info->link = JRoute::_(LyftenBloggieHelperRoute::getEntryRoute($entry->archive, $entry->slug));;
			}
		}

		return $info;
	}
}