Adding library files etc. (incremental update)
parent
88660ffd35
commit
c0633f01af
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
interface h5pFramework {
|
||||
function setErrorMessage($message);
|
||||
function setInfoMessage($message);
|
||||
function translate($message, $replacements);
|
||||
}
|
||||
|
||||
class h5p {
|
||||
public $h5pFramework;
|
||||
public function __construct($h5pFramework) {
|
||||
$this->h5pFramework = $h5pFramework;
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue