wallabag/inc/poche/User.class.php

50 lines
1 KiB
PHP
Raw Normal View History

2013-08-06 12:18:03 +00:00
<?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;
2013-08-06 13:51:48 +00:00
function __construct($user = array())
2013-08-06 12:18:03 +00:00
{
2013-08-06 13:51:48 +00:00
if ($user != array()) {
$this->id = $user['id'];
$this->username = $user['username'];
$this->name = $user['name'];
$this->password = $user['password'];
$this->email = $user['email'];
$this->config = $user['config'];
}
2013-08-06 12:18:03 +00:00
}
2013-08-06 13:51:48 +00:00
public function getId()
{
return $this->id;
}
public function getUsername()
{
return $this->username;
}
public function setConfig($config)
{
$this->config = $config;
}
public function getConfigValue($name) {
2013-08-06 12:18:03 +00:00
return (isset($this->config[$name])) ? $this->config[$name] : FALSE;
}
}