mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-28 03:51:02 +00:00
33 lines
753 B
PHP
33 lines
753 B
PHP
|
<?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;
|
||
|
}
|
||
|
}
|