00001 <?php 00014 class SEvent extends SModel { 00016 protected $action; 00018 protected $source; 00020 protected $target; 00022 protected $transaction; 00024 protected $details = array(); 00025 00027 public function doc() { 00028 return "An instance of this class represents an " 00029 . "event generated by the user of the application"; 00030 } 00031 00033 public function getAttributes() { 00034 return array('id', 'action', 'source', 'target', 'transaction'); 00035 } 00036 00038 public function getUniqueAttributes() { 00039 return array('id'); 00040 } 00041 } 00042 ?>
1.5.6