X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=inline;f=inc%2Fpoche%2FUser.class.php;h=6dac7839719472e952b7ae6e356d3da1d310f3fa;hb=20f00edd1539b18d4d350da27f338f4743fb38b3;hp=ef47730f46a401c2fc2060aecde55eeaf9c7a2ed;hpb=7ce7ec4c942e0a3567858ad0ec8e654000b49a3f;p=github%2Fwallabag%2Fwallabag.git diff --git a/inc/poche/User.class.php b/inc/poche/User.class.php index ef47730f..6dac7839 100644 --- a/inc/poche/User.class.php +++ b/inc/poche/User.class.php @@ -17,17 +17,34 @@ class User public $email; public $config; - function __construct($user) + function __construct($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']; + 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']; + } } - function getConfigValue($name) { + public function getId() + { + return $this->id; + } + + public function getUsername() + { + return $this->username; + } + + public function setConfig($config) + { + $this->config = $config; + } + + public function getConfigValue($name) { return (isset($this->config[$name])) ? $this->config[$name] : FALSE; } } \ No newline at end of file