ACC SHELL

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

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

include_once('libs/images.class.php');
include_once('libs/fotogalerie.class.php');

$Parametry = new Parametry();
$Kategorie = new Kategorie();

if (isset($_POST['odeslat']) || isset($_POST['odeslat_a_zavrit'])) {
    include_once('include/parametry/parametry_hodnoty_ulozit.inc');
}
include_once('include/parametry/parametry_zpracuj.php');

$parametry = isset($_GET['id']) ? $Parametry->getHodnotaParametru($_GET['id']) : $Parametry->getHodnotaParametru('');
include_once(TEMPLATES . '/header.tpl');
?>

<div id="obsah1">

    <table>

        <tr>

            <td><a class="mainbutton" href="parametry_edit.php"><span>Přidat nový parametr</span></a></td>

            <td>&nbsp;&nbsp; | &nbsp;&nbsp;<a href="javascript:history.back(-1)" title="">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="parametry.php" title="Správa parametrů">Správa parametrů</a>
                    &nbsp;&nbsp;/&nbsp;&nbsp;
                    <a href="" title="Editace parametrů">Editace parametrů <?php echo isset($_GET['id']) ? ' - ' . $parametry->nazev : ''; ?></a>

                </span>
            </td>
        </tr>

    </table>

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

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


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

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

ACC SHELL 2018