CMS  Version 3.9
connection_record.inc
Go to the documentation of this file.
1 <?php
7 class ConnectionRecord extends DataItem
8 {
9  var $table = "connection_record";
10  var $primary_key = "connection_id";
11 
12  var $fields = array("connection_id" => Number,
13  "source_class" => String,
14  "source_id" => Number,
15  "target_class" => String,
16  "target_id" => Number);
17 
18  function Source()
19  {
20  return $this->getRelated($this->source_class, "source_id");
21  }
22 
23  function Target()
24  {
25  return $this->getRelated($this->target_class, "target_id");
26  }
27 }
28  ?>