aboutsummaryrefslogtreecommitdiff
path: root/app/views/oer/embed/url.php
blob: 2c9af801c95fa1c4058d06cb9a0ec21866afb883 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
if ($material['player_url']) {
    OERDownloadcounter::addCounter($material->id);
    $url = $material['player_url'];
}
$htmlid = "oercampus_".$material->id."_".uniqid();
?>
<iframe id='<?= $htmlid ?>'
        src="<?= htmlReady($url) ?>"
        style="width: 100%; height: 70vh; border: none;"></iframe>
<?= $this->render_partial("oer/embed/_link") ?>