Source for file active_object.php

Documentation is available at active_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 an active 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.     * An active object, relating to the Sloodle active objects DB table.
  17.     * @package sloodle
  18.     */
  19.     class SloodleActiveObject
  20.     {
  21.         /**
  22.         * The UUID of this object.
  23.         * @var string 
  24.         * @access public
  25.         */
  26.         var $uuid = '';
  27.         
  28.         /**
  29.         * The name of this object.
  30.         * @var string 
  31.         * @access public
  32.         */
  33.         var $name = '';
  34.         
  35.         /**
  36.         * The password of this object.
  37.         * @var string 
  38.         * @access public
  39.         */
  40.         var $password = '';
  41.         
  42.         /**
  43.         * The type of this object.
  44.         * @var string 
  45.         * @access public
  46.         */
  47.         var $type = '';
  48.         
  49.         /**
  50.         * The course/controller which this object is authorised for.
  51.         * @var SloodleCourse 
  52.         * @access public
  53.         */
  54.         var $course = null;
  55.         
  56.         /**
  57.         * The user who authorised this object.
  58.         * @var SloodleUser 
  59.         * @access public
  60.         */
  61.         var $user = null;
  62.     }
  63.  
  64. ?>

Documentation generated on Fri, 17 Jul 2009 11:00:58 +0100 by phpDocumentor 1.4.0