mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
11 lines
No EOL
316 B
PHP
11 lines
No EOL
316 B
PHP
<?php
|
|
$limitVideos = 50;
|
|
global $global, $config;
|
|
if (!isset($global['systemRootPath'])) {
|
|
require_once '../videos/configuration.php';
|
|
}
|
|
$_page = new Page(array('Dashboard'));
|
|
$_page->setIncludeInHead(array('view/charts_head.php'));
|
|
include $global['systemRootPath'] . 'view/charts_body.php';
|
|
$_page->print();
|
|
?>
|