h5p-php-library/h5p.classes.php

15 lines
289 B
PHP
Raw Normal View History

<?php
interface h5pFramework {
function setErrorMessage($message);
function setInfoMessage($message);
function translate($message, $replacements);
}
class h5p {
public $h5pFramework;
public function __construct($h5pFramework) {
$this->h5pFramework = $h5pFramework;
}
}
?>