?
Path : /home/admin/public_html/old/promice/components/com_jcomments/plugins/ |
Current File : /home/admin/public_html/old/promice/components/com_jcomments/plugins/com_sobi2.plugin.php |
<?php /** * JComments plugin for SOBI2 objects support * * @version 2.0 * @package JComments * @author Sergey M. Litvinov (smart@joomlatune.ru) * @copyright (C) 2006-2009 by Sergey M. Litvinov (http://www.joomlatune.ru) * @license GNU/GPL: http://www.gnu.org/copyleft/gpl.html **/ (defined('_VALID_MOS') OR defined('_JEXEC')) or die('Direct Access to this location is not allowed.'); class jc_com_sobi2 extends JCommentsPlugin { function getObjectTitle($id) { global $mainframe; $db = & JCommentsFactory::getDBO(); $db->setQuery( 'SELECT title FROM #__sobi2_item WHERE published = 1 AND itemid = ' . $id ); $title = $db->loadResult(); return jc_com_sobi2::getSobiStr($title); } function getObjectLink($id) { global $mainframe; if (!isset($GLOBALS['jc_sobi2itemid'])) { $_requestOption = JCommentsInput::getParam($_REQUEST, 'option', ''); $_requestItemid = (int) JCommentsInput::getParam($_REQUEST, 'Itemid', 0); $_Itemid = null; $db = & JCommentsFactory::getDBO(); $query = "SELECT `configValue`" . "\nFROM `#__sobi2_config`" . "\nWHERE `configKey` = 'forceMenuId'" . "\n AND `sobi2Section` = 'general'" ; $db->setQuery($query); $forceMenuId = (int) $db->loadResult(); if ($_requestOption == 'com_sobi2' && !$forceMenuId) { $_Itemid = $_requestItemid; } else { $_Itemid = JCommentsPlugin::getItemid('com_sobi2'); } $GLOBALS['jc_sobi2itemid'] = $_Itemid; } $_Itemid = $GLOBALS['jc_sobi2itemid']; if ($_Itemid != null) { $_Itemid = '&Itemid=' . $_Itemid; } else { $_Itemid = ''; } $link = JoomlaTuneRoute::_('index.php?option=com_sobi2&sobi2Task=sobi2Details&sobi2Id=' . $id . $_Itemid); return $link; } function getObjectOwner($id) { $db = & JCommentsFactory::getDBO(); $db->setQuery( 'SELECT owner FROM #__sobi2_item WHERE itemid = ' . $id ); $userid = $db->loadResult(); return $userid; } function getCategories($filter = '') { $db = & JCommentsFactory::getDBO(); $query = "SELECT c.id as `value`, name AS `text`" . "\n FROM #__sobi2_categories AS c" . (($filter != '') ? "\n WHERE c.id IN ( ".$filter." )" : '') . "\n ORDER BY c.ordering" ; $db->setQuery( $query ); $rows = $db->loadObjectList(); return $rows; } /** * reversing MySQL injection filter * * @param string $string - string to decode * @return string */ function getSobiStr( $string ) { if( $string ) { $iso = defined("_ISO") ? explode( '=', _ISO ) : array( null, "UTF-8"); if(strtoupper($iso[1]) != "UTF-8" ) { $string = stripslashes(stripslashes(html_entity_decode($string))); } else { $string = stripslashes(stripslashes($string)); } if( !strstr( "<script", $string ) ) { $string = str_replace( "& ", "& ", $string ); } } return $string; } } ?>