Adding library files etc. (incremental update)

namespaces
Svein-Tore Griff With 2012-11-21 14:14:07 +01:00
parent 88660ffd35
commit c0633f01af
1 changed files with 14 additions and 0 deletions

14
h5p.classes.php Normal file
View File

@ -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;
}
}
?>