| Server IP : 54.36.91.62 / Your IP : 216.73.217.117 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/coopiak/www/cj79373/administrator/components/com_kunena/controllers/ |
Upload File : |
<?php
/**
* Kunena Component
*
* @package Kunena.Administrator
* @subpackage Controllers
*
* @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\Language\Text;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\Utilities\ArrayHelper;
/**
* Kunena Smileys Controller
*
* @since 2.0
*/
class KunenaAdminControllerSmilies extends KunenaController
{
/**
* @var null|string
* @since Kunena
*/
protected $baseurl = null;
/**
* Construct
*
* @param array $config config
*
* @throws Exception
* @since 2.0
*/
public function __construct($config = array())
{
parent::__construct($config);
$this->baseurl = 'administrator/index.php?option=com_kunena&view=smilies';
}
/**
* Add
*
* @return void
*
* @throws Exception
* @since 2.0
* @throws null
*/
public function add()
{
if (!Session::checkToken('post'))
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
return;
}
$this->setRedirect(Route::_('index.php?option=com_kunena&view=smiley&layout=add', false));
}
/**
* Edit
*
* @return void
*
* @since 2.0
* @throws Exception
* @since Kunena
* @throws null
*/
public function edit()
{
if (!Session::checkToken('post'))
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
return;
}
$cid = $this->app->input->get('cid', array(), 'post', 'array');
$cid = ArrayHelper::toInteger($cid);
$id = array_shift($cid);
if (!$id)
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_A_NO_SMILEYS_SELECTED'), 'notice');
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
return;
}
$this->setRedirect(Route::_("index.php?option=com_kunena&view=smiley&layout=edit&id={$id}", false));
}
/**
* Save
*
* @throws Exception
*
* @return void
*
* @since 2.0
* @throws null
*/
public function save()
{
$db = Factory::getDbo();
if (!Session::checkToken('post'))
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
return;
}
$smiley_code = $this->app->input->getString('smiley_code');
$smiley_location = basename($this->app->input->getString('smiley_url'));
$smiley_emoticonbar = $this->app->input->getInt('smiley_emoticonbar', 0);
$smileyid = $this->app->input->getInt('smileyid', 0);
if (!$smileyid)
{
$db->setQuery(
"INSERT INTO #__kunena_smileys SET
code={$db->quote($smiley_code)},
location={$db->quote($smiley_location)},
emoticonbar={$db->quote($smiley_emoticonbar)}"
);
try
{
$db->execute();
}
catch (RuntimeException $e)
{
$this->app->enqueueMessage($e->getMessage());
return;
}
}
else
{
$db->setQuery(
"UPDATE #__kunena_smileys SET
code={$db->quote($smiley_code)},
location={$db->quote($smiley_location)},
emoticonbar={$db->quote($smiley_emoticonbar)}
WHERE id = '$smileyid'"
);
try
{
$db->execute();
}
catch (RuntimeException $e)
{
$this->app->enqueueMessage($e->getMessage());
return;
}
}
$this->app->enqueueMessage(Text::_('COM_KUNENA_SMILEY_SAVED'));
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
}
/**
* Smiley upload
*
* @throws Exception
*
* @return void
*
* @since 2.0
* @throws null
*/
public function smileyupload()
{
if (!Session::checkToken('post'))
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
return;
}
$file = $this->app->input->files->get('Filedata');
// TODO : change this part to use other method than KunenaUploadHelper::upload()
$upload = KunenaUploadHelper::upload($file, JPATH_ROOT . '/' . KunenaFactory::getTemplate()->getSmileyPath(), 'html');
if ($upload)
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_A_EMOTICONS_UPLOAD_SUCCESS'));
}
else
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_A_EMOTICONS_UPLOAD_ERROR_UNABLE'), 'error');
}
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
}
/**
* Remove
*
* @throws Exception
*
* @return void
*
* @since 2.0
* @throws null
*/
public function remove()
{
jimport('joomla.utilities.arrayhelper');
$db = Factory::getDbo();
if (!Session::checkToken('post'))
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
return;
}
$cid = $this->app->input->get('cid', array(), 'post', 'array');
$cid = ArrayHelper::toInteger($cid);
$cids = implode(',', $cid);
if ($cids)
{
$db->setQuery("DELETE FROM #__kunena_smileys WHERE id IN ($cids)");
try
{
$db->execute();
}
catch (RuntimeException $e)
{
$this->app->enqueueMessage($e->getMessage());
return;
}
}
$this->app->enqueueMessage(Text::_('COM_KUNENA_SMILEY_DELETED'));
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
}
/**
* Method to just redirect to main manager in case of use of cancel button
*
* @return void
*
* @throws Exception
* @since K4.0
* @throws null
*/
public function cancel()
{
$this->app->redirect(KunenaRoute::_($this->baseurl, false));
}
}