Chapter 38. Event Object Definition

This section describes the contents of event objects. Most object parameters map directly to the record fields described above.

The functions listed within the object definition are the object methods that are available for the object. Usage information about those methods can be found in Object Methods.


/* Event Object Prototype */

Class event {

  var $N;     // Only with mgd_list_XXX functions.
  var $id;
  var $up;
  var $start;
  var $end;
  var $title;
  var $description;
  var $type;
  var $extra;
  var $owner;
  var $read_level;
  var $write_level;
  var $sitegroup;

  function fetch(); // Only with mgd_list_XXX functions.
  
  function create();
  function update();
  function delete();

  function createattachment();
  function updateattachment();
  function deleteattachment();
  function listattachments();
  function getattachment();
  function openattachment();
  function serveattachment();
  
  function parameter();
  function searchparameters();
  function listparameters();
  
  function getsitegroup();
  function setsitegroup();

}