ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilConditionTrigger.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
12 {
16  protected $ref_id;
17 
21  protected $obj_id;
22 
26  protected $type;
27 
31  public function __construct($ref_id, $obj_id, $obj_type)
32  {
33  $this->ref_id = $ref_id;
34  $this->obj_id = $obj_id;
35  $this->type = $obj_type;
36  }
37 
43  public function getRefId()
44  {
45  return $this->ref_id;
46  }
47 
53  public function getObjId()
54  {
55  return $this->obj_id;
56  }
57 
63  public function getType()
64  {
65  return $this->type;
66  }
67 }
__construct($ref_id, $obj_id, $obj_type)
Constructor.
Represents a condition trigger object.