ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ContentItemImage.php
Go to the documentation of this file.
1 <?php
2 
4 
15 {
16 
24  function __construct($id, $height = null, $width = null)
25  {
26 
27  $this->{'@id'} = $id;
28  if (!is_null($height)) {
29  $this->height = $height;
30  }
31  if (!is_null($width)) {
32  $this->width = $width;
33  }
34 
35  }
36 
37 }
if(!array_key_exists('StateId', $_REQUEST)) $id
__construct($id, $height=null, $width=null)
Class constructor.
Class to represent a content-item image object.