[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.119.128.75: ~ $
<?php
/**
 * CommonPlugin for phplist.
 *
 * This file is a part of CommonPlugin.
 *
 * @category  phplist
 *
 * @author    Duncan Cameron
 * @copyright 2011-2018 Duncan Cameron
 * @license   http://www.gnu.org/licenses/gpl.html GNU General Public License, Version 3
 */

namespace phpList\plugin\Common\DAO;

/**
 * trait providing methods on the user table.
 */
trait UserTrait
{
    public function userByEmail($email)
    {
        $email = sql_escape($email);
        $sql =
            "SELECT * FROM {$this->tables['user']}
            WHERE email = '$email'";

        return $this->dbCommand->queryRow($sql);
    }

    public function userById($id)
    {
        $sql =
            "SELECT * FROM {$this->tables['user']}
            WHERE id = $id";

        return $this->dbCommand->queryRow($sql);
    }

    public function userByUniqid($uid)
    {
        $uid = sql_escape($uid);
        $sql =
            "SELECT * FROM {$this->tables['user']}
            WHERE uniqid = '$uid'";

        return $this->dbCommand->queryRow($sql);
    }

    public function unconfirmUser($email)
    {
        $email = sql_escape($email);
        $sql =
            "UPDATE {$this->tables['user']} u
            SET confirmed = 0
            WHERE email = '$email'";

        return $this->dbCommand->queryAffectedRows($sql);
    }

    public function confirmUser($email)
    {
        $email = sql_escape($email);
        $sql =
            "UPDATE {$this->tables['user']} u
            SET confirmed = 1
            WHERE email = '$email'";

        return $this->dbCommand->queryAffectedRows($sql);
    }
}

Filemanager

Name Type Size Permission Actions
Attribute.php File 2.03 KB 0644
AttributeTrait.php File 1.77 KB 0644
Config.php File 1.11 KB 0644
ConfigTrait.php File 1.06 KB 0644
Lists.php File 1.37 KB 0644
ListsTrait.php File 1.46 KB 0644
Message.php File 5.67 KB 0644
MessageTrait.php File 5.87 KB 0644
TemplateTrait.php File 797 B 0644
User.php File 1.62 KB 0644
UserTrait.php File 1.57 KB 0644