<?php

/* Template variables */

$template = array(
    'name' => 'MVPM Hostel Alumni Association',
    'version' => '1.0',
    'author' => 'MVPM',
    'title' => 'MVPM',
    'fevicon'=>'',
    'description' => 'MVPM',
    // ''               empty to remove full width from the page (< 992px: 100%, > 992px: 95%, 1440px max width)
    // 'full-width'     for a full width page (100%, 1920px max width)
    'page' => '',
    // 'navbar-default' for a light header
    // 'navbar-inverse' for a dark header
    'header_navbar' => 'navbar-default',
    // 'navbar-fixed-top'     for a top fixed header
    // 'navbar-fixed-bottom'  for a bottom fixed header
    'header' => 'navbar-fixed-top',
    // ''                  left sidebar will open only from the top left toggle button (better website performance)
    // 'enable-hover'      left sidebar will make a small portion of left sidebar visible, so that it can be opened with a mouse hover (> 1200px) (may affect website performance)
    'sidebar_left' => 'sidebar-left-pinned',
    // ''                                            empty for default behavior
    // 'sidebar-left-pinned'                         for a left pinned sidebar (always visible > 1200px)
    // 'sidebar-right-pinned'                        for a right pinned sidebar (always visible > 1200px)
    // 'sidebar-left-pinned sidebar-right-pinned'    for both sidebars pinned (always visible > 1200px)
    'navigation' => 'sidebar-left-pinned',
    // All effects apply in resolutions larger than 1200px width
    // 'fx-none'           remove all effects from main content when one of the sidebars are open (better website performance)
    // 'fx-opacity'        opacity effect
    // 'fx-move'           move effect
    // 'fx-push'           push effect
    // 'fx-rotate'         rotate effect
    // 'fx-push-move'      push-move effect
    // 'fx-push-rotate'    push-rotate effect
    'content_fx' => 'fx-none',
    //  Available themes: 'river', 'amethyst' , 'dragon', 'emerald', 'grass' or '' leave empty for the default fresh orange
    'theme' => 'river',
    'active_page' => basename($_SERVER['PHP_SELF']),
    'default_controller' => 'dashboard'
);

/* Primary navigation array (the primary navigation will be created automatically based on this array, up to 2 level deep) */
$primary_nav = array(
     array(
        'name' => '<h2 class="sidebar-header">Welcome</h2>',
        'url' => 'header',
        'icon' => '',
        'function' => '',
    ),
//    array(
//        'name' => 'Dashboard',
//        'url' => 'admin/dashboard',
//        //'icon' => 'icon-coffee',
//        'icon' => 'icon-dashboard',
//        'function' => 'dashboard',
//    ),
    array(
        'name' => 'User Management',
        'url' => 'admin/dashboard/users',
        'icon' => 'glyphicon-user',
        'function' => 'users'
    )
//     array(
//        'name' => 'Company Management',
//        'url' => 'admin/dashboard/company',
//        'icon' => 'icon-group',
//        'function' => 'company'
//    ),
//     array(
//        'name' => 'Product Management',
//        'url' => 'admin/dashboard/products',
//        'icon' => 'fa fa-bars',
//        'function' => 'products'
//    ),
//     array(
//        'name' => 'Notifications',
//        'url' => 'admin/dashboard/notifications',
//        'icon' => 'icon-envelope',
//        'function' => 'notifications'
//    ),
//     array(
//        'name' => 'Links',
//        'url' => 'admin/dashboard/links',
//        'icon' => 'icon-external-link',
//        'function' => 'links'
//    ),
//     array(
//        'name' => 'Messages',
//        'url' => 'admin/dashboard/messages',
//        'icon' => 'fa fa-envelope-o',
//        'function' => 'messages'
//    )
    
);
