1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-06 03:50:04 +02:00
Oinktube/plugin/LiveLinks/index.php
2024-04-02 13:44:59 -03:00

18 lines
No EOL
363 B
PHP

<?php
require_once '../../videos/configuration.php';
$plugin = AVideoPlugin::loadPluginIfEnabled('LiveLinks');
if (empty($plugin) || !$plugin->canAddLinks()) {
forbiddenPage(__("You can not do this"));
}
$_page = new Page(array('Live Links'));
?>
<div class="container">
<?php
include_once './view/panel.php';
?>
</div>
<?php
$_page->print();
?>