LTI Integration Library 4.10.3
PHP class library for building LTI integrations
 
Loading...
Searching...
No Matches
ContentItemImage.php
1<?php
2
3namespace ceLTIc\LTI;
4
6
18{
19
27 function __construct($id, $height = null, $width = null)
28 {
29 parent::__construct($id, $width, $height);
30 Util::logDebug('Class ceLTIc\LTI\ContentItemImage has been deprecated; please use ceLTIc\LTI\Content\Image instead ' .
31 '(note change of parameter order in constructor).', true);
32 }
33
34}
Class to represent a content-item image object.
__construct($id, $height=null, $width=null)
Class constructor.
Class to represent a content-item image object.
Definition Image.php:13
static logDebug($message, $showSource=false)
Log a debug message.
Definition Util.php:274