uawdijnntqw1x1x1
IP : 216.73.216.6
Hostname : ps-hcp-gr-004.pouyasazan.org
Kernel : Linux ps-hcp-gr-004.pouyasazan.org 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
Disable Function : exec,system,passthru,shell_exec,proc_open,proc_close,popen,pcntl_exec,dl,show_source
OS : Linux
PATH:
/
home
/
hsabaeej
/
public_html
/
ca4f2
/
..
/
components
/
com_tags
/
controllers
/
tags.php
/
/
<?php /** * @package Joomla.Site * @subpackage com_tags * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * The Tags List Controller * * @since 3.1 */ class TagsControllerTags extends JControllerLegacy { /** * Method to search tags with AJAX * * @return void */ public function searchAjax() { // Required objects $app = JFactory::getApplication(); $user = JFactory::getUser(); // Receive request data $filters = array( 'like' => trim($app->input->get('like', null, 'string')), 'title' => trim($app->input->get('title', null, 'string')), 'flanguage' => $app->input->get('flanguage', null, 'word'), 'published' => $app->input->get('published', 1, 'int'), 'parent_id' => $app->input->get('parent_id', 0, 'int'), 'access' => $user->getAuthorisedViewLevels(), ); if ((!$user->authorise('core.edit.state', 'com_tags')) && (!$user->authorise('core.edit', 'com_tags'))) { // Filter on published for those who do not have edit or edit.state rights. $filters['published'] = 1; } $results = JHelperTags::searchTags($filters); if ($results) { // Output a JSON object echo json_encode($results); } $app->close(); } }
/home/hsabaeej/public_html/ca4f2/../components/com_tags/controllers/tags.php