blob: 1b40d2404cd40eb1156465235f9d9162a79cb87f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
if ($material['player_url']) {
OERDownloadcounter::addCounter($material->id);
$url = $material['player_url'];
}
$htmlid = "oercampus_".$material->id."_".uniqid();
?>
<iframe sandbox="allow-forms allow-popups allow-pointer-lock allow-same-origin allow-scripts"
id='<?= $htmlid ?>'
src="<?= htmlReady($url) ?>"
style="width: 100%; height: 70vh; border: none;"></iframe>
<?= $this->render_partial("oer/embed/_link") ?>
|