(?)'; } elseif ($help != '') { return ' (?)'; } } /** * @desc vkljuci izkljuci editiranje helpa */ static function edit_toggle () { global $lang; if (isset($_COOKIE['edithelp'])) echo ''; else echo ''; } function ajax () { if ($_GET['a'] == 'edit_on') { $this->ajax_edit_on(); } elseif ($_GET['a'] == 'edit_off') { $this->ajax_edit_off(); } elseif ($_GET['a'] == 'display_edit_help') { $this->ajax_display_edit_help(); } elseif ($_GET['a'] == 'save_help') { $this->ajax_save_help(); } elseif ($_GET['a'] == 'display_help') { $this->ajax_display_help(); } } /** * @desc vklopi editiranje helpa (nastavi cooike) */ function ajax_edit_on () { // $anketa = $_GET['anketa']; setcookie('edithelp', 'on'); // header("Location: index.php?anketa=$anketa"); header("Location: index.php?a=nastavitve"); } /** * @desc izklopi editiranje helpa (nastavi cooike) */ function ajax_edit_off () { // $anketa = $_GET['anketa']; setcookie('edithelp', '', time()-3600); // header("Location: index.php?anketa=$anketa"); header("Location: index.php?a=nastavitve"); } /** * @desc prikaze formo za urejanje helpa */ function ajax_display_edit_help () { global $lang; $l = (int)$_GET['lang']; $what = substr($_REQUEST['what'], 5); $sql = sisplet_query("SELECT help FROM srv_help WHERE what = '$what' AND lang='$l'"); $row = mysqli_fetch_array($sql); echo ''; echo ''; } /** * @desc shrani help */ function ajax_save_help () { $l = (int)$_GET['lang']; $what = $_REQUEST['what']; $help = $_POST['help']; sisplet_query("REPLACE INTO srv_help (what, lang, help) VALUES ('$what', '$l', '$help')"); } function ajax_display_help() { $l = (int)$_GET['lang']; /* $regex = "#(help_)(.*)#e"; $what = preg_replace($regex,"('$2')",$_GET['what']); print_r($output); */ $what = substr($_REQUEST['what'], 5); $sql = sisplet_query("SELECT help FROM srv_help WHERE what = '$what' AND lang='$l'"); $row = mysqli_fetch_array($sql); echo '
'.nl2br($row['help']).'
'; } } ?>