ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLTIConsumerGradeServiceLineItems.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
31 {
33  {
34  parent::__construct($service);
35  $this->id = 'LineItem.collection';
36  $this->template = '/{context_id}/lineitems';
37  $this->variables[] = 'LineItems.url';
38  $this->formats[] = 'application/vnd.ims.lis.v2.lineitemcontainer+json';
39  $this->formats[] = 'application/vnd.ims.lis.v2.lineitem+json';
40  $this->methods[] = self::HTTP_GET;
41  $this->methods[] = self::HTTP_POST;
42  }
43 }
ilLTIConsumerServiceBase $service
Service associated with this resource.
__construct(Container $dic, ilPlugin $plugin)