Commit e828ade7 authored by Nico Schallehn's avatar Nico Schallehn

test

parent 06a09d8b
......@@ -16,7 +16,7 @@ function jsonCacheDecoder($url){
}
function TableRowRights($Api, $Key = null, $Data = null){
$ret = '<tr>'.
'<td><input type="text" value="'.$Data["from"].'" name="from"></td> <td><input type="text" value="'.$Data["to"].'" name="to"></td>';
'<form method="POST"><td><input type="text" value="'.$Data["from"].'" name="from"></td> <td><input type="text" value="'.$Data["to"].'" name="to"></td>';
$Api->SpaltenFilme;
foreach ($Api->SpaltenFilme as $value) {
......@@ -39,7 +39,7 @@ function TableRowRights($Api, $Key = null, $Data = null){
$ret .= '<td><input type="checkbox" name="Kenntnisse_in" '.($Data["DebugO"]==true?"checked":"").'></td>';
$ret .= '<td><input type="button" value="'.(($Data == null)?"Anlegen":"Speichern").'">
<input type=text" name="ID" value="'.$Key.'"></td>';
$ret .= '</tr>';
$ret .= '</tr></form>';
return $ret;
}
......@@ -126,42 +126,10 @@ if($_GET["action"] == "filme"){
<script type="text/javascript" src="js/jquery.flexisel.js"></script></div>';
}else if($_GET["action"] == "rechte"){
$titel = "Rechteverwaltung";
$content = '<div class="content"><h1>Rechteverwaltung</h1>';
$JavaScript =' <style>
.table-header-rotated {
border-collapse: collapse;
}
.csstransforms .table-header-rotated td {
width: 30px;
}
.no-csstransforms .table-header-rotated th {
padding: 5px 10px;
}
.table-header-rotated td {
text-align: center;
padding: 10px 5px;
border: 1px solid #ccc;
}
.csstransforms .table-header-rotated th.rotate {
height: 140px;
white-space: nowrap;
}
.csstransforms .table-header-rotated th.rotate > div {
-webkit-transform: translate(25px, 51px) rotate(315deg);
transform: translate(25px, 51px) rotate(315deg);
width: 30px;
}
.csstransforms .table-header-rotated th.rotate > div > span {
border-bottom: 1px solid #ccc;
padding: 5px 10px;
}
.table-header-rotated th.row-header {
padding: 0 10px;
border-bottom: 1px solid #ccc;
}
</style>';
$JavaScript = '<style>
th{text-align: center;
vertical-align: bottom;}
......@@ -204,6 +172,13 @@ if($_GET["action"] == "filme"){
file_put_contents(API_Rights, json_encode($rights));
}
if(file_exists(API_Rights)){
if(isset($_POST)){
ob_start();
var_dump($_POST);
$content .= ob_get_clean();
}
$Data = json_decode(file_get_contents(API_Rights), true);
ob_start();
var_dump($Data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment