From 94e472438c1ae917a4b18d7a781459c0d226c4b8 Mon Sep 17 00:00:00 2001 From: asiekierka Date: Sun, 23 Dec 2012 18:37:44 +0100 Subject: [PATCH] pasek atencji ukonczony --- atencja.php | 12 ++++++------ inc/config.php | 6 +++++- js/pasek_atencji.js | 8 ++++++++ templates/pasek_atencji.html | 9 ++++++--- 4 files changed, 25 insertions(+), 10 deletions(-) create mode 100644 js/pasek_atencji.js diff --git a/atencja.php b/atencja.php index 34737c22..edbfad89 100644 --- a/atencja.php +++ b/atencja.php @@ -1,10 +1,10 @@ 0) file_put_contents("atencja.txt",$_POST["atencja"]); - if(strlen($_SERVER['HTTP_REFERER'])>0) { header('Location: ' . $_SERVER['HTTP_REFERER']); } - else { header('Location: /'); } + if(@strlen($_POST["tekst"])>0) { + file_put_contents("atencja.txt",$_POST["tekst"]); + if(strlen($_SERVER['HTTP_REFERER'])>0) { header('Location: ' . $_SERVER['HTTP_REFERER']); } + else { header('Location: /'); } + } else print(file_get_contents("atencja.txt")); + return; ?> diff --git a/inc/config.php b/inc/config.php index 49cb137b..9d4532c5 100644 --- a/inc/config.php +++ b/inc/config.php @@ -499,7 +499,11 @@ // How many reports you can create in the same request. $config['report_limit'] = 3; - + + // Pasek atencji + // REMEMBER TO CHMOD atencja.txt PROPERLY + // Oh, and add jQuery in additional_javascript. + $config['pasek_atencji'] = false; /* * ==================== * Display settings diff --git a/js/pasek_atencji.js b/js/pasek_atencji.js new file mode 100644 index 00000000..26b3b8d9 --- /dev/null +++ b/js/pasek_atencji.js @@ -0,0 +1,8 @@ +$(document).ready(function(){ + $("#pasek_atencji").click(function(eO){ $("#pasek_atencji").css("display","none"); + $("#pasek_atencji_forma").css("display","block"); }); + $.get("/atencja.php", function(data) { + $("#pasek_atencji").text(data); + $("#pasek_atencji_input").val(data); + }); +}); diff --git a/templates/pasek_atencji.html b/templates/pasek_atencji.html index d54f334d..98f2e29b 100644 --- a/templates/pasek_atencji.html +++ b/templates/pasek_atencji.html @@ -1,9 +1,12 @@ {% if config.pasek_atencji %} -
+
- + {% endif %}