| Current Path : /var/www/components/com_jcomments/plugins/ |
| Current File : /var/www/components/com_jcomments/plugins/com_joomgallery_gallery.plugin.php |
<?php
/**
* JComments plugin for JoomGallery gallery comments support
*
* @version 2.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;
class jc_com_joomgallery_gallery extends JCommentsPlugin
{
function getObjectTitle($id)
{
// Gallery comments
$language = JFactory::getLanguage();
$language->load('com_joomgallery', JPATH_ROOT);
return JText::_('JGS_COMMON_GALLERY');
}
function getObjectLink($id)
{
// Get an Itemid of JoomGallery
// First, check whether there was set one in the configuration
$db = JFactory::getDBO();
$db->setQuery('SELECT jg_itemid FROM #__joomgallery_config LIMIT 1');
if (!$_Itemid = $db->loadResult()) {
$_Itemid = self::getItemid('com_joomgallery');
}
return JRoute::_('index.php?option=com_joomgallery&view=gallery&Itemid=' . $_Itemid);
}
function getObjectOwner($id)
{
// Gallery owner (a super administrator)
$db = JFactory::getDBO();
$db->setQuery('SELECT id FROM #__users WHERE gid = 25');
$userid = $db->loadResult();
return intval($userid);
}
}