| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.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 : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/blog/components/com_kunena/controllers/ |
Upload File : |
<?php
/**
* Kunena Component
*
* @package Kunena.Site
* @subpackage Controllers
*
* @copyright (C) 2008 - 2018 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die();
/**
* Kunena Announcements Controller
*
* @since 2.0
*/
class KunenaControllerAnnouncement extends KunenaController
{
/**
*
*/
public function none()
{
// FIXME: This is workaround for task=none on edit.
$this->edit();
}
/**
* @throws Exception
*/
public function publish()
{
if (!JSession::checkToken('post'))
{
$this->app->enqueueMessage(JText::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirectBack();
return;
}
$cid = JFactory::getApplication()->input->post->get('cid', array(), 'array');
Joomla\Utilities\ArrayHelper::toInteger($cid);
foreach ($cid as $id)
{
$announcement = KunenaForumAnnouncementHelper::get($id);
$date_today = JFactory::getDate();
if ($announcement->published == 1 && $announcement->publish_up > $date_today && $announcement->publish_down > $date_today)
{
continue;
}
$announcement->published = 1;
if (!$announcement->authorise('edit') || !$announcement->save())
{
$this->app->enqueueMessage($announcement->getError(), 'error');
}
else
{
if ($this->config->log_moderation)
{
KunenaLog::log(KunenaLog::TYPE_MODERATION, KunenaLog::LOG_ANNOUNCEMENT_PUBLISH, array('id' => $announcement->id));
}
$this->app->enqueueMessage(JText::sprintf('COM_KUNENA_ANN_SUCCESS_PUBLISH', $this->escape($announcement->title)));
}
}
$this->setRedirectBack();
}
/**
* @throws Exception
*/
public function unpublish()
{
if (!JSession::checkToken('post'))
{
$this->app->enqueueMessage(JText::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirectBack();
return;
}
$cid = JFactory::getApplication()->input->get('cid', array(), 'post', 'array');
Joomla\Utilities\ArrayHelper::toInteger($cid);
foreach ($cid as $id)
{
$announcement = KunenaForumAnnouncementHelper::get($id);
$date_today = JFactory::getDate();
if ($announcement->published == 0 && $announcement->publish_down > $date_today && $announcement->publish_down > $date_today)
{
continue;
}
$announcement->published = 0;
if (!$announcement->authorise('edit') || !$announcement->save())
{
$this->app->enqueueMessage($announcement->getError(), 'error');
}
else
{
if ($this->config->log_moderation)
{
KunenaLog::log(KunenaLog::TYPE_MODERATION, KunenaLog::LOG_ANNOUNCEMENT_UNPUBLISH, array('id' => $announcement->id));
}
$this->app->enqueueMessage(JText::sprintf('COM_KUNENA_ANN_SUCCESS_UNPUBLISH', $this->escape($announcement->title)));
}
}
$this->setRedirectBack();
}
/**
* @throws Exception
*/
public function edit()
{
$cid = JFactory::getApplication()->input->post->get('cid', array(), 'array');
Joomla\Utilities\ArrayHelper::toInteger($cid);
$announcement = KunenaForumAnnouncementHelper::get(array_pop($cid));
$this->setRedirect($announcement->getUrl('edit', false));
}
/**
* @throws Exception
*/
public function delete()
{
if (!JSession::checkToken('request'))
{
$this->app->enqueueMessage(JText::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirectBack();
return;
}
$cid = JFactory::getApplication()->input->get('cid', (array) JFactory::getApplication()->input->getInt('id'), 'post', 'array');
Joomla\Utilities\ArrayHelper::toInteger($cid);
foreach ($cid as $id)
{
$announcement = KunenaForumAnnouncementHelper::get($id);
if (!$announcement->authorise('delete') || !$announcement->delete())
{
$this->app->enqueueMessage($announcement->getError(), 'error');
}
else
{
if ($this->config->log_moderation)
{
KunenaLog::log(KunenaLog::TYPE_MODERATION, KunenaLog::LOG_ANNOUNCEMENT_DELETE, array('id' => $announcement->id));
}
$this->app->enqueueMessage(JText::_('COM_KUNENA_ANN_DELETED'));
}
}
$this->setRedirect(KunenaForumAnnouncementHelper::getUrl('list', false));
}
/**
* @throws Exception
*/
public function save()
{
if (!JSession::checkToken('post'))
{
$this->app->enqueueMessage(JText::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirectBack();
return;
}
$now = new JDate;
$fields = array();
$fields['title'] = JFactory::getApplication()->input->getString('title', '', 'post', 'raw');
$fields['description'] = JFactory::getApplication()->input->getString('description', '', 'post', 'raw');
$fields['sdescription'] = JFactory::getApplication()->input->getString('sdescription', '', 'post', 'raw');
$fields['created'] = JFactory::getApplication()->input->getString('created', $now->toSql());
$fields['publish_up'] = JFactory::getApplication()->input->getString('publish_up', $now->toSql());
$fields['publish_down'] = JFactory::getApplication()->input->getString('publish_down', $now->toSql());
$fields['published'] = JFactory::getApplication()->input->getInt('published', 1);
$fields['showdate'] = JFactory::getApplication()->input->getInt('showdate', 1);
$id = JFactory::getApplication()->input->getInt('id');
$announcement = KunenaForumAnnouncementHelper::get($id);
$announcement->bind($fields);
if (!$announcement->authorise($id ? 'edit' : 'create') || !$announcement->save())
{
$this->app->enqueueMessage($announcement->getError(), 'error');
$this->setRedirectBack();
return;
}
if ($this->config->log_moderation)
{
KunenaLog::log(KunenaLog::TYPE_MODERATION, $id ? KunenaLog::LOG_ANNOUNCEMENT_EDIT : KunenaLog::LOG_ANNOUNCEMENT_CREATE, array('id' => $announcement->id));
}
$this->app->enqueueMessage(JText::_($id ? 'COM_KUNENA_ANN_SUCCESS_EDIT' : 'COM_KUNENA_ANN_SUCCESS_ADD'));
$this->setRedirect($announcement->getUrl('default', false));
}
}