Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.3.x will end 7 October 2024 (12 months).
  • Bug fixes for security issues in 4.3.x will end 21 April 2025 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.2.x is supported too.

Differences Between: [Versions 400 and 403] [Versions 401 and 403]

   1  <?php
   2  
   3  namespace Packback\Lti1p3\Interfaces;
   4  
   5  /** @internal */
   6  interface ILtiRegistration
   7  {
   8      public function getIssuer();
   9  
  10      public function setIssuer($issuer);
  11  
  12      public function getClientId();
  13  
  14      public function setClientId($clientId);
  15  
  16      public function getKeySetUrl();
  17  
  18      public function setKeySetUrl($keySetUrl);
  19  
  20      public function getAuthTokenUrl();
  21  
  22      public function setAuthTokenUrl($authTokenUrl);
  23  
  24      public function getAuthLoginUrl();
  25  
  26      public function setAuthLoginUrl($authLoginUrl);
  27  
  28      public function getAuthServer();
  29  
  30      public function setAuthServer($authServer);
  31  
  32      public function getToolPrivateKey();
  33  
  34      public function setToolPrivateKey($toolPrivateKey);
  35  
  36      public function getKid();
  37  
  38      public function setKid($kid);
  39  }