pasek atencji ukonczony
This commit is contained in:
parent
89cb25faa9
commit
94e472438c
12
atencja.php
12
atencja.php
@ -1,10 +1,10 @@
|
||||
<?php
|
||||
require_once 'inc/functions.php';
|
||||
checkBan(); // Wazne!
|
||||
// Zwroc stare dane atencji
|
||||
print file_get_contents("atencja.txt");
|
||||
// inb4 XSS
|
||||
if(strlen($_POST["atencja"])>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;
|
||||
?>
|
||||
|
@ -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
|
||||
|
8
js/pasek_atencji.js
Normal file
8
js/pasek_atencji.js
Normal file
@ -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);
|
||||
});
|
||||
});
|
@ -1,9 +1,12 @@
|
||||
{% if config.pasek_atencji %}
|
||||
<div id="pasek_atencji" style="height: 1.5em; width: 90%; text-align: center; display: block;">
|
||||
<div id="pasek_atencji" style="height: 1.5em; width: 100%; padding: 0; margin: 0; text-align: center; display: block; onclick="pasekAtencjiKliku();">
|
||||
|
||||
</div>
|
||||
<form method="post" action="/atencja.php" id="pasek_atencji_forma" style="display: none;">
|
||||
<input name="tekst" style="width: 90%; text-align: center;" value="" type="text">
|
||||
<form method="post" action="/atencja.php" id="pasek_atencji_forma" style="display: none; padding: 0; margin: 0;">
|
||||
<input id="pasek_atencji_input" name="tekst" style="width: 100%; padding: 0; margin: 0; text-align: center;" value="" type="text">
|
||||
</form>
|
||||
<style>
|
||||
#pasek_atencji:hover { background-color: #fff; opacity: 0.8; }
|
||||
</style>
|
||||
<script type="text/javascript" src="/js/pasek_atencji.js"></script>
|
||||
{% endif %}
|
||||
|
Loading…
Reference in New Issue
Block a user