ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilExtractedParams.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3
12{
14 protected $subject_type;
15
17 protected $subject_id;
18
20 protected $context_type;
21
23 protected $context_id;
24
28 public function getSubjectType()
29 {
31 }
32
37 {
38 $this->subject_type = $subject_type;
39 }
40
44 public function getSubjectId()
45 {
46 return $this->subject_id;
47 }
48
52 public function setSubjectId($subject_id)
53 {
54 $this->subject_id = $subject_id;
55 }
56
60 public function getContextType()
61 {
63 }
64
69 {
70 $this->context_type = $context_type;
71 }
72
76 public function getContextId()
77 {
78 return $this->context_id;
79 }
80
84 public function setContextId($context_id)
85 {
86 $this->context_id = $context_id;
87 }
88}
An exception for terminatinating execution or to throw for unit testing.
Class ilExtractedParams.