| Server IP : 54.36.91.62 / Your IP : 216.73.217.94 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 Ranks Controller
*
* @since 2.0
*/
class KunenaAdminControllerRanks 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=ranks';
}
/**
* 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=rank&layout=add', false));
}
/**
* Edit
*
* @return void
*
* @throws Exception
*
* @since 2.0
* @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_RANKS_SELECTED'), 'notice');
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
return;
}
else
{
$this->setRedirect(Route::_("index.php?option=com_kunena&view=rank&layout=edit&id={$id}", false));
}
}
/**
* Save
*
* @return void
*
* @since 2.0
*
* @throws Exception
* @since Kunena
* @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;
}
$rank_title = $this->app->input->getString('rank_title');
$rank_image = basename($this->app->input->getString('rank_image'));
$rank_special = $this->app->input->getInt('rank_special');
$rank_min = $this->app->input->getInt('rank_min');
$rankid = $this->app->input->getInt('rankid', 0);
if (!$rankid)
{
$db->setQuery("INSERT INTO #__kunena_ranks SET
rank_title={$db->quote($rank_title)},
rank_image={$db->quote($rank_image)},
rank_special={$db->quote($rank_special)},
rank_min={$db->quote($rank_min)}"
);
try
{
$db->execute();
}
catch (RuntimeException $e)
{
$this->app->enqueueMessage($e->getMessage());
return;
}
}
else
{
$db->setQuery("UPDATE #__kunena_ranks SET
rank_title={$db->quote($rank_title)},
rank_image={$db->quote($rank_image)},
rank_special={$db->quote($rank_special)},
rank_min={$db->quote($rank_min)}
WHERE rank_id={$db->quote($rankid)}"
);
try
{
$db->execute();
}
catch (RuntimeException $e)
{
$this->app->enqueueMessage($e->getMessage());
return;
}
}
$this->app->enqueueMessage(Text::_('COM_KUNENA_RANK_SAVED'));
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
}
/**
* Rank upload
*
* @return void
*
* @since 2.0
*
* @throws Exception
* @since Kunena
* @throws null
*/
public function rankupload()
{
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()->getRankPath(), 'html');
if ($upload)
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_A_RANKS_UPLOAD_SUCCESS'));
}
else
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_A_RANKS_UPLOAD_ERROR_UNABLE'), 'error');
}
$this->setRedirect(KunenaRoute::_($this->baseurl, false));
}
/**
* Remove
*
* @return void
*
* @since 2.0
*
* @throws Exception
* @since Kunena
* @throws null
*/
public function remove()
{
$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_ranks WHERE rank_id IN ($cids)");
try
{
$db->execute();
}
catch (RuntimeException $e)
{
$this->app->enqueueMessage($e->getMessage());
return;
}
}
$this->app->enqueueMessage(Text::_('COM_KUNENA_RANK_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));
}
}