ACC SHELL

Path : /srv/www/vhosts/centrumlb/administrace/
File Upload :
Current File : /srv/www/vhosts/centrumlb/administrace/katalog.php.bak

<?php
include_once('config/config.php');
$Admin = new UserAdmin();
isset($_GET['logout']) ? $Admin->logout() : $Admin->isLogged();

include_once('libs/funkcephp.php');

$Kategorie = new Kategorie();
$Katalog = new Katalog();


$checkUrl = Query::searchForParamsFromUrl($_GET);
if ($checkUrl) {
    foreach ($checkUrl as $x) {
        
    }
}


include_once('include/katalog/katalog_zpracuj.php');




include_once(TEMPLATES . '/header.tpl');
?>


<div id="obsah">

    <table>

        <tr>

            <td>
                <form method="post" action="katalog_edit.php">
                    <select name="kategorie" id="kategorie" class="medium-input">
                        <?php echo $Kategorie->getKatalogOptionBox(isset($detail->id_kategorie) ? $detail->id_kategorie : false); ?>
                    </select>
                    <input type="submit" class="mainbutton" value="Přidat nový produkt" />
                    <!--<a class="mainbutton" href="katalog_edit.php"><span>Přidat nový produkt</span></a>-->
                </form>

            <td>
                &nbsp;&nbsp; | &nbsp;&nbsp;<a href="javascript:history.back(-1)" title="Zpět na předchozí stranu">Zpět na předchozí stranu</a>
                &nbsp;&nbsp; | &nbsp;&nbsp;<span id="drobecky">Kde se nacházíte: &nbsp;&nbsp;
                    <a href="index.php" title="Úvodní strana">Úvodní strana</a>&nbsp;&nbsp;/&nbsp;&nbsp;
                    <a href="katalog.php" title="Správa produktů">Správa produktů</a></span>
            </td>

        </tr>

    </table>

    <?php
    include('messages.php');

    $Widget = new Widget();
    $id_panelu = array(120);
    $user_id = $_SESSION['adminuser']['id'];
    include_once('include/widgety.php');
    ?>

</div> <!-- div id obsah END -->


<?php include_once(TEMPLATES . '/footer.tpl'); ?>

ACC SHELL 2018