LTI Tool Provider Library  3.0.2
PHP class library for building LTI Tool Providers
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 }
__construct($id, $height=null, $width=null)
Class constructor.
Class to represent a content-item image object.