aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/User.class.php
blob: ef47730f46a401c2fc2060aecde55eeaf9c7a2ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
 * poche, a read it later open source system
 *
 * @category   poche
 * @author     Nicolas Lœuillet <support@inthepoche.com>
 * @copyright  2013
 * @license    http://www.wtfpl.net/ see COPYING file
 */

class User
{
    public $id;
    public $username;
    public $name;
    public $password;
    public $email;
    public $config;

    function __construct($user)
    {
        $this->id = $user['id'];
        $this->username = $user['username'];
        $this->name = $user['name'];
        $this->password = $user['password'];
        $this->email = $user['email'];
        $this->config = $user['config'];
    }

    function getConfigValue($name) {
        return (isset($this->config[$name])) ? $this->config[$name] : FALSE;
    }
}