This commit is contained in:
SamBrishes 2020-06-08 18:28:55 +05:30 committed by GitHub
commit f729349c3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 3 deletions

View File

@ -80,6 +80,8 @@
<?php
if (Sanitize::pathFile(PATH_ADMIN_VIEWS, $layout['view'].'.php')) {
include(PATH_ADMIN_VIEWS.$layout['view'].'.php');
} else if (!empty($layout['plugin']) && method_exists($layout['plugin'], 'adminView')) {
echo $layout['plugin']->adminView();
} else {
echo '<h1 class="text-center">'.$L->g('Page not found').'</h1>';
echo '<h2 class="text-center">'.$L->g('Choose a page from the sidebar.').'</h2>';

View File

@ -13,18 +13,24 @@ $layout = array(
'view'=>null,
'template'=>'index.php',
'slug'=>null,
'plugin'=>false,
'parameters'=>null,
'title'=>'Bludit'
);
// Get the view, controller, and the parameters from the URL.
// Get the Controller
$explodeSlug = $url->explodeSlug();
$layout['controller'] = $layout['view'] = $layout['slug'] = empty($explodeSlug[0])?'dashboard':$explodeSlug[0];
unset($explodeSlug[0]);
$layout['parameters'] = implode('/', $explodeSlug);
// Boot plugins rules
// Get the Plugin
include(PATH_RULES.'60.plugins.php');
if ($layout['controller'] === 'plugin' && !empty($explodeSlug)) {
$layout['plugin'] = getPlugin(array_shift($explodeSlug));
}
// Get the URL parameters
$layout['parameters'] = implode('/', $explodeSlug);
// --- AJAX ---
if ($layout['slug']==='ajax') {
@ -77,6 +83,8 @@ else
// Load controller.
if (Sanitize::pathFile(PATH_ADMIN_CONTROLLERS, $layout['controller'].'.php')) {
include(PATH_ADMIN_CONTROLLERS.$layout['controller'].'.php');
} else if(!empty($layout['plugin']) && method_exists($layout['plugin'], 'adminController')) {
$layout['plugin']->adminController();
}
// Load view and theme.