ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ContentItemPlacement.php
Go to the documentation of this file.
1 <?php
2 
4 
15 {
16 
25  function __construct($displayWidth, $displayHeight, $documentTarget, $windowTarget)
26  {
27 
28  if (!empty($displayWidth)) {
29  $this->displayWidth = $displayWidth;
30  }
31  if (!empty($displayHeight)) {
32  $this->displayHeight = $displayHeight;
33  }
34  if (!empty($documentTarget)) {
35  $this->documentTarget = $documentTarget;
36  }
37  if (!empty($windowTarget)) {
38  $this->windowTarget = $windowTarget;
39  }
40 
41  }
42 
43 }
__construct($displayWidth, $displayHeight, $documentTarget, $windowTarget)
Class constructor.
Class to represent a content-item placement object.