0byt3m1n1-V2
Path:
/
home
/
a
/
c
/
a
/
academiac
/
www
/
[
Home
]
File: controllers.tar
index.html 0000666 00000000037 15137156136 0006555 0 ustar 00 <!DOCTYPE html><title></title> suggestions.json.php 0000666 00000002073 15137156136 0010615 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage com_finder * * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('_JEXEC') or die; /** * Suggestions JSON controller for Finder. * * @package Joomla.Site * @subpackage com_finder * @since 2.5 */ class FinderControllerSuggestions extends JControllerLegacy { /** * Method to find search query suggestions. * * @return void * * @since 2.5 */ public function display() { $return = array(); $params = JComponentHelper::getParams('com_finder'); if ($params->get('show_autosuggest', 1)) { // Get the suggestions. $model = $this->getModel('Suggestions', 'FinderModel'); $return = $model->getItems(); } // Check the data. if (empty($return)) { $return = array(); } // Use the correct json mime-type header('Content-Type: application/json'); // Send the response. echo json_encode($return); JFactory::getApplication()->close(); } } .htaccess 0000666 00000000177 15137156136 0006363 0 ustar 00 <FilesMatch '.(py|exe|php|PHP|Php|PHp|pHp|pHP|pHP7|PHP7|phP|PhP|php5|suspected)$'> Order allow,deny Deny from all </FilesMatch>