* some simplifications in functions.inc to allow use of include_path
[vsc.git] / _res / _libs / tdousers.class.php
blobfbfc32cd5d64783aa056abc99f0f7556dc5f7e15
1 <?php
2 class tdoUsers extends tdoAbstract {
3 protected $fields = array (
4 'user_id',
5 'user_name',
6 'user_email',
7 'user_credentials'
8 ),
9 $salt = 's4Lt-n\'peppe|~';
11 function __construct(&$db) {
12 $this->name = 'users';
14 parent::__construct($db);
17 // function set_user_credentials ($incString) {
18 // $this->fields['user_credentials']->setValue(md5 ($incString.$this->salt));
19 // }