ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
DggContainer.php
Go to the documentation of this file.
1<?php
2
4
6{
12 private $spIdMax;
13
19 private $cDgSaved;
20
26 private $cSpSaved;
27
34
40 private $OPT = [];
41
47 private $IDCLs = [];
48
54 public function getSpIdMax()
55 {
56 return $this->spIdMax;
57 }
58
64 public function setSpIdMax($value): void
65 {
66 $this->spIdMax = $value;
67 }
68
74 public function getCDgSaved()
75 {
76 return $this->cDgSaved;
77 }
78
84 public function setCDgSaved($value): void
85 {
86 $this->cDgSaved = $value;
87 }
88
94 public function getCSpSaved()
95 {
96 return $this->cSpSaved;
97 }
98
104 public function setCSpSaved($value): void
105 {
106 $this->cSpSaved = $value;
107 }
108
114 public function getBstoreContainer()
115 {
117 }
118
125 {
126 $this->bstoreContainer = $bstoreContainer;
127 }
128
135 public function setOPT($property, $value): void
136 {
137 $this->OPT[$property] = $value;
138 }
139
147 public function getOPT($property)
148 {
149 if (isset($this->OPT[$property])) {
150 return $this->OPT[$property];
151 }
152
153 return null;
154 }
155
161 public function getIDCLs()
162 {
163 return $this->IDCLs;
164 }
165
171 public function setIDCLs($pValue): void
172 {
173 $this->IDCLs = $pValue;
174 }
175}
An exception for terminatinating execution or to throw for unit testing.
getCSpSaved()
Get total number of shapes saved (including group shapes).
setOPT($property, $value)
Set an option for the drawing group.
setBstoreContainer($bstoreContainer)
Set BLIP Store Container.
getSpIdMax()
Get maximum shape index of all shapes in all drawings (plus one).
getCDgSaved()
Get total number of drawings saved.
setSpIdMax($value)
Set maximum shape index of all shapes in all drawings (plus one).
setCSpSaved($value)
Set total number of shapes saved (including group shapes).
setCDgSaved($value)
Set total number of drawings saved.
getOPT($property)
Get an option for the drawing group.