Пример #1
0
function gen_main()
{
    $text = '';
    $text .= '<div id="top_wrapper">';
    $text .= '<nav id="top_nav" class="navbar navbar-inverse navbar-fixed-top animated fadeInDown">';
    $text .= gen_nav();
    $text .= '</nav>';
    $text .= '</div>';
    $text .= '<div id="middle_wrapper" class="animated fadeIn">';
    switch ($_SESSION['curPage']) {
        case '1':
            $text .= gen_residents();
            break;
        case '2':
            $text .= gen_guests();
            break;
        case '3':
            if ($_SESSION['user']['admin']) {
                $text .= gen_users();
            } else {
                $_SESSION['curPage'] = 1;
                $text .= gen_main();
            }
            break;
        case '4':
            $text .= gen_shifts();
            break;
    }
    $text .= '</div>';
    $text .= '<div id="bottom_wrapper">';
    $text .= '<nav id="bottom_nav" class="navbar navbar-default navbar-fixed-bottom animated fadeInUp">';
    $text .= gen_footer();
    $text .= '</nav>';
    $text .= '</div>';
    return $text;
}
Пример #2
0
		<!-- Custom styles -->
		<link rel="stylesheet" type="text/css" href="css/theme.css">
		<link rel="stylesheet" type="text/css" href="css/styles.css">	
		
		<!-- Xajax javascript call -->
		<?php 
$xajax->printJavascript();
?>
	</head>
	<body>
		<div id="modal" class="modal fade"></div>
		<div id="site_wrapper">
			<?php 
if (isset($_SESSION['user'])) {
    reload_shift();
    echo gen_main();
} else {
    echo gen_login();
}
?>
		</div>
		<script>
			function isNumberKey(evt){
			    var charCode = (evt.which) ? evt.which : event.keyCode
			    if (charCode > 31 && (charCode < 48 || charCode > 57))
			        return false;
			    return true;
			}
			function setupInputRestricts() {
				$('.numbersOnly').autotab('number');
			}