static function MenuChanger()
 {
     if (Auth::isAdmin(App::$instance)) {
         ST::deployTemplate('menus/admin.inc');
     } else {
         ST::deployTemplate('menus/user.inc');
     }
     //под меню добавить слушателя сообщений
     ExceptionHandler::messageException();
     //выдать путь для js, $init должен быть инициирован выше
     ST::setVarPhptoJS(App::$instance->opt->appHttpPath, "appHttpPath");
 }
<?php

ST::deployTemplate('heads/ui_timepicker.inc');
RenderEngine::MenuChanger();
?>

<div class="container">
    <div class="col-md-12 text-center">
        <br><br><br><br>
        <h1 class="text-muted">Ошибка</h1>
        <span class="text-muted" style="font-size: 160px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;">409</span>

        <h1 class="text-muted">Запрашиваемую ВКС редактировать запрещено</h1>
        <hr>
        <h4 class="text-center"><a href="<?php 
echo ST::route('Index/index');
?>
">Вернуться на главную</a></h4>
    </div>
</div>
Esempio n. 3
0
<?php

ST::deployTemplate('heads/ui_timepicker.inc');
RenderEngine::MenuChanger();
$p = new SearchAssert();
$p->init();
?>
<div class="container">
    <div class="col-lg-offset-3 col-lg-6">
        <h3>Страница поиска ВКС</h3>
        <hr>
    </div>
    <div class="col-lg-offset-3 col-lg-6">
        <div class="alert alert-warning text-center"><h4><span
                    class="glyphicon glyphicon-info-sign text-danger "></span> В настоящий момент поиск производится
                только по id вкс</h4></div>
        <div class="form-inline" action="#">
            <div class="form-group col-lg-12">
                <input id="search-input" class="form-control"/>
                <button class="btn btn-info" type="button" id="search-button">Найти</button>
            </div>
        </div>

        <div class="col-lg-12" id="search-results"></div>

    </div>
</div>

<?php 
ST::deployTemplate('footer/mainFooter.inc');