mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
21 lines
No EOL
648 B
PHP
21 lines
No EOL
648 B
PHP
<?php
|
|
require_once '../../../videos/configuration.php';
|
|
$_page = new Page(array('Animations'));
|
|
?>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<?php
|
|
foreach (glob("{$global['systemRootPath']}plugin/Layout/animatedBackGrounds/*.php") as $file) {
|
|
$name = basename($file);
|
|
if ($name === 'index.php') {
|
|
continue;
|
|
}
|
|
$url = str_replace($global['systemRootPath'], getCDN(), $file);
|
|
echo "<div class='col-sm-3'>{$name}<iframe src='{$url}' style='width:100%; height: 400px;'></iframe></div>";
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
$_page->print();
|
|
?>
|