LTI Integration Library 4.10.3
PHP class library for building LTI integrations
 
Loading...
Searching...
No Matches
ContentItem.php
1<?php
2
3namespace ceLTIc\LTI;
4
6use ceLTIc\LTI\Content\ContentItemPlacement;
7
18class ContentItem extends Item
19{
20
28 function __construct($type, $placementAdvice = null, $id = null)
29 {
30 parent::__construct($type, $placementAdvice, $id);
31 Util::logDebug('Class ceLTIc\LTI\ContentItem has been deprecated; please use ceLTIc\LTI\Content\Item instead.', true);
32 }
33
34}
Class to represent a content-item object.
__construct($type, $placementAdvice=null, $id=null)
Class constructor.
Class to represent a content-item object.
static logDebug($message, $showSource=false)
Log a debug message.
Definition Util.php:274