| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/c/o/o/coopiak/www/cj79373/components/com_kunena/views/user/ |
Upload File : |
<?php
/**
* Kunena Component
*
* @package Kunena.Site
* @subpackage Views
*
* @copyright Copyright (C) 2008 - 2022 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die();
use Joomla\CMS\Factory;
use Joomla\CMS\Filesystem\Folder;
use Joomla\CMS\Uri\Uri;
/**
* Users View
* @since Kunena
*/
class KunenaViewUser extends KunenaView
{
/**
* @param null $tpl tpl
*
* @throws Exception
* @since Kunena
*/
public function displayList($tpl = null)
{
$response = array();
if ($this->me->exists())
{
$users = $this->get('Items');
foreach ($users as $user)
{
if ($this->config->username)
{
$response[] = $user->username;
}
else
{
$response[] = $user->name;
}
}
}
// Set the MIME type and header for JSON output.
$this->document->setMimeEncoding('application/json');
Factory::getApplication()->setHeader('Content-Disposition',
'attachment; filename="' . $this->getName() . '.' . $this->getLayout() . '.json"'
);
Factory::getApplication()->sendHeaders();
echo json_encode($response);
}
/**
* Method to return list of users by ajax request for userlist and search user
*
* @param string $tpl The name of the template file to parse; automatically searches through the template paths.
*
* @return void
* @throws Exception
* @since K4.0
*/
public function displayListMention($tpl = null)
{
$response = array();
if ($this->me->exists())
{
$users = $this->get('Items');
foreach ($users as $user)
{
$user_obj = new stdClass;
$user_obj->id = $user->id;
$user_obj->photo = $user->getAvatarURL();
$user_obj->name = $user->username;
$response[] = $user_obj;
}
}
// Set the MIME type and header for JSON output.
$this->document->setMimeEncoding('application/json');
Factory::getApplication()->setHeader('Content-Disposition',
'attachment; filename="' . $this->getName() . '.' . $this->getLayout() . '.json"'
);
Factory::getApplication()->sendHeaders();
echo json_encode($response);
}
/**
* Return the list of files for the avatar gallery selected by the user
*
* @since K5.0
* @return void
* @throws Exception
*/
public function displayGalleryimages()
{
$response = array();
$gallery_name = $this->app->input->get('gallery_name', null, 'string');
jimport('joomla.filesystem.folder');
$list_files = Folder::files(JPATH_BASE . '/media/kunena/avatars/gallery/' . $gallery_name);
foreach ($list_files as $key => $file)
{
$response[$key]['filename'] = $file;
$response[$key]['url'] = Uri::root() . 'media/kunena/avatars/gallery/' . $gallery_name . '/' . $file;
}
// Set the MIME type and header for JSON output.
$this->document->setMimeEncoding('application/json');
Factory::getApplication()->setHeader('Content-Disposition',
'attachment; filename="' . $this->getName() . '.' . $this->getLayout() . '.json"'
);
Factory::getApplication()->sendHeaders();
echo json_encode($response);
}
}