summaryrefslogtreecommitdiffstats
path: root/app/class/externuser.class.php
blob: 8f5c9d019653db3a59e0f3872485dfb7366402b6 (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
<?php

require_once "class/object.class.php";

/*
 * Non-application users
 */
class ExternUser extends Object
{
    /*
     * Constructor
     */
    function __construct($guid = null)
    {
        $cols = array(
            "guid",
            "email",
            "emailConfKey"
        );

        parent::__construct("extern-user", $cols);
        $this->loadObj($guid);
    }
}

?>