mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-06 03:50:04 +02:00
18 lines
No EOL
363 B
PHP
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();
|
|
?>
|