Para añadir enlaces a páginas personalizadas en la barra lateral del panel de administración de Bootstrap tiene que crear su página, mapearla con el enrutador principal y luego añadirla en la barra lateral.
admin/
mi-pagina-personalizada.php
admin/index.
php para que dirija a su nueva página.$router->map('GET', '/mi-página-personalizada', 'mi-página-personalizada.php', 'mi-página-personalizada');
admin\inc\sidebar.php
$active = false;
// test if the page is active using $match from the router.
// 'my-custom-page' is the name we gave in index.php => $router->map()
if (isset($match['name']) && $match['name'] == 'my-custom-page') {
$active = true;
$is_category_collapsed = false;
}
// add category
$sidebar->addCategory('new-category', 'New Category', '', '', true, $is_category_collapsed);
// add nav into category - the 'newCategory' object is the sidebar's newly created category.
// its name ('newCategory') is the lower-camelcase version of 'new-category'
$sidebar->newCategory->addNav('my-custom-page', 'nav flex-column');
// add page into nav - the 'myCustomPage' object is the sidebar's category newly created nav.
// its name ('myCustomPage') is the lower-camelcase version of 'my-custom-page'
$sidebar->newCategory->myCustomPage->addLink(ADMIN_URL . 'my-custom-page', 'MyCustom Page', 'fas fa-users', $active, 'class=nav-item', 'class=nav-link d-flex align-items-center');
El panel de administración de Bootstrap
Archivos y lógica
Barra de navegación
Contenido
Depurar