summaryrefslogblamecommitdiffstats
path: root/app/class/externuser.class.php
blob: 8f5c9d019653db3a59e0f3872485dfb7366402b6 (plain) (tree)

























                                                  
<?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);
    }
}

?>