Source for file user_object.php

Documentation is available at user_object.php

  1. <?php
  2.     // This file is part of the Sloodle project (www.sloodle.org)
  3.     
  4.     /**
  5.     * Defines a structure to store information about a user-centric object
  6.     *
  7.     * @package sloodle
  8.     * @copyright Copyright (c) 2008 Sloodle (various contributors)
  9.     * @license http://www.gnu.org/licenses/gpl-3.0.html GNU GPL v3
  10.     *
  11.     * @contributor Peter R. Bloomfield
  12.     */
  13.     
  14.     
  15.     /**
  16.     * A user-centric object, relating to the Sloodle user objects DB table.
  17.     * @package sloodle
  18.     */
  19.     class SloodleUserObject
  20.     {
  21.         /**
  22.         * The database record ID of this object's entry.
  23.         * @var int 
  24.         * @access public
  25.         */
  26.         var $id = 0;
  27.     
  28.         /**
  29.         * The UUID of the object's user
  30.         * @var string 
  31.         * @access public
  32.         */
  33.         var $avuuid = '';
  34.     
  35.         /**
  36.         * The UUID of this object.
  37.         * @var string 
  38.         * @access public
  39.         */
  40.         var $objuuid = '';
  41.         
  42.         /**
  43.         * The name of this object.
  44.         * @var string 
  45.         * @access public
  46.         */
  47.         var $objname = '';
  48.         
  49.         /**
  50.         * The password of this object.
  51.         * @var string 
  52.         * @access public
  53.         */
  54.         var $password = '';
  55.         
  56.         /**
  57.         * Indicates whether or not this object is currently authorized.
  58.         * @var bool 
  59.         * @access public
  60.         */
  61.         var $authorized = false;
  62.         
  63.         /**
  64.         * Timestamp for when this object was last used.
  65.         * @var int 
  66.         * @access public
  67.         */
  68.         var $timeupdated = null;
  69.     }
  70.  
  71. ?>

Documentation generated on Fri, 17 Jul 2009 11:02:42 +0100 by phpDocumentor 1.4.0