function notatki() { if (isset($_POST['zapisz'])) { $notatki = htmlspecialchars($_POST['notes']); $query = mysql_query("UPDATE `notes` SET `content`='{$notatki}'"); if ($query) { kernel::make_notify("Pomyślnie zapisano notatkę", "Notatki", 3); } else { kernel::make_notify("Nie udało sie zapisać notatki", "Notatki", 1); } } echo '<form action="" method="post"> <textarea name="notes" id="notatki" rows="5" cols="45">'; $result = mysql_fetch_row(mysql_query("SELECT `content` FROM `notes`")); echo $result['0']; echo '</textarea> <input type="submit" name="zapisz" value="Zapisz" id="button_zapisz"> </form>'; }
} } echo '<li><a href="' . $kernel->host() . '?go=' . $get . '&feature=' . $url . '"' . @$class . '>' . $name . '</a></li>'; $i++; } echo ' </ul> </div>'; } } if (isset($content)) { if (class_exists("mainContent")) { if (method_exists($content, "init")) { $content->init(@$_GET['feature']); } else { $kernel->make_notify("Metoda <i>init()</i> nie istnieje. Wtyczka nie zostanie wczytana", NULL, 1); } } else { $kernel->make_notify("Klasa <i>mainContent</i> nie istnieje. Wtyczka nie zostanie wczytana", NULL, 1); } } else { $kernel->make_notify("Aplikacja którą próbujesz uruchomić nie istnieje lub nie została zainstalowana."); } ?> </div> <div id="notify"></div> <div id="footer">Powered by <a href="http://wojciechkrol.eu">Wojciech Król</a>. Wszelkie prawa zastrzeżone! <span style="color:#aaa;">TablicaCMS</span> w wersji: <span style="color:orange;"><?php echo $kernel->version(); ?> </span></div>
function group_del() { $x = 0; $y = 0; foreach ($_POST['img'] as $id) { if (mysql_query("DELETE FROM `tentego_img` WHERE `id`=" . $id)) { $x++; } $y++; } kernel::make_notify("Usunięto <b>" . $x . "</b> z " . $y . " elementów."); }
function other() { if (isset($_POST['save'])) { $query = mysql_query("UPDATE `{$this->table}` SET `regulations` = '" . $_POST['regulations'] . "', `comments` = '" . $_POST['comments'] . "' \n\t\t\t\tWHERE id='1'") or die(mysql_error()); if ($query) { kernel::make_notify("Ustawienia zostały zaktualizowane"); } else { kernel::make_notify("Nie udało się zapisać ustawień"); } } $this->query(mysql_query("SELECT * FROM `{$this->table}` WHERE `id`='1'")); echo '<div id="apigui"> <form method="post" action="?go=settings&feature=4"> <div id="options"><input type="submit" value="Zapisz" name="save"></div> <div class="block"> <h2>Komentarze</h2> <span class="description">Włączyć komentarze pod obiektami?</span> <input type="radio" name="comments" value="1" ' . ($this->pobierz('comments') ? 'checked' : '') . ' />Tak <input type="radio" name="comments" value="0" ' . (!$this->pobierz('comments') ? 'checked' : '') . ' />Nie </div> <div class="block"> <h2>Regulamin</h2> <span class="description">Treść regulaminu. Dozwolony kod HTML.</span> <textarea name="regulations">' . $this->pobierz('regulations') . '</textarea> </div> </form> </div>'; }
function mass() { if (isset($_POST['send'])) { $query = mysql_query("SELECT * FROM `tablicacms_users`"); while ($user = mysql_fetch_array($query)) { $date = date('Y-m-d H:i:s'); $query_pm = mysql_query("INSERT INTO `tentego_inbox` (`subject`,`content`,`from`,`to`,`date`,`read`) \n\t\t\t\t\tVALUES ('" . $_POST['subject'] . "', '" . $_POST['content'] . "', '1', '" . $user['id'] . "', '{$date}', '0')") or die(mysql_error()); if ($query_pm) { $error .= NULL; } else { $error .= 1; } } if ($error == NULL) { kernel::make_notify("Wiadomości zostały poprawnie wysłane"); } else { kernel::make_notify("Nie udało się wysłać wiadomości"); } } echo '<div id="apigui"> <form method="post" action="?go=inbox&feature=mass"> <div id="options"><input type="submit" value="Wyślij" name="send"></div> <div class="block" style="display:block;width:80%;"> <h2>Tytuł</h2> <input type="text" name="subject" /> </div> <div class="block" style="display:block;width:80%;"> <h2>Treść</h2> <textarea name="content"></textarea> </div> </form> </div>'; }
function delete($id) { if (mysql_query("DELETE FROM `{$this->table}` WHERE `id`=" . $id)) { kernel::make_notify("Pomyślnie usunięto reklamę"); } else { kernel::make_notify("Wystąpił błąd podczas usuwania reklamy"); } }