ACC SHELL
<?php
include_once('config/config.php');
include_once('include/uzivatele/uzivatele_zpracuj.php');
include_once('include/secure.php');
$User = new User();
isset($_GET['id']) ? $User->getInfoNewsletter($_GET['id'], 'users_newsletter') : $User->getInfoNewsletter('', 'users_newsletter');
include_once('libs/funkcephp.php');
include_once('libs/tools.class.php');
if (isset($_POST['odeslat']) || isset($_POST['odeslat_a_zavrit'])) {
include_once('include/uzivatele/uzivatele_newsletter_ulozit.inc');
}
include_once(TEMPLATES . '/header.tpl');
?>
<div id="obsah1">
<table>
<tr>
<td><a class="mainbutton" href="uzivatele_newsletter_edit.php"><span>Přidat uživatele</span></a></td>
<td>
| <a href="javascript:history.back(-1)" title="Zpět na předchozí stranu">Zpět na předchozí stranu</a>
| <span id="drobecky">Kde se nacházíte:
<a href="index.php" title="Úvodní strana">Úvodní strana</a> /
<a href="uzivatele-newsletter.php" title="Správa uživatelů newsletteru">Správa uživatelů newsletteru</a>
/
<?php if (isset($_GET['id'])) { ?>
<a href="" title="Editace uživatele">Editace uživatele - <?php echo $User->getEmail(); ?></a>
<?php
} else {
?>
<a href="" title="Založení nového uživatele newsletteru">Založení nového uživatele newsletteru</a>
<?php
}
?>
</span></td>
</tr>
</table>
<?php
include('messages.php');
$Widget = new Widget();
$id_panelu = array(111);
$user_id = $_SESSION['adminuser']['id'];
include_once('include/widgety.php');
?>
</div> <!-- div id obsah END -->
<?php include_once(TEMPLATES . '/footer.tpl'); ?>
ACC SHELL 2018