File: edit.php

package info (click to toggle)
xcache 2.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,724 kB
  • sloc: ansic: 8,175; php: 4,557; awk: 285; sh: 135; makefile: 75
file content (44 lines) | stat: -rwxr-xr-x 729 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php

include("./common.php");

if (!isset($_GET['name'])) {
	die("missing name");
}

$name = $_GET['name'];
// trigger auth
$vcnt = xcache_count(XC_TYPE_VAR);

if ($_SERVER['REQUEST_METHOD'] == 'POST') {
	if ($enable_eval) {
		eval('$value = ' . $_POST['value']);
	}
	else {
		$value = $_POST['value'];
	}
	xcache_set($name, $value);
	header("Location: xcache.php?type=" . XC_TYPE_VAR);
	exit;
}
$value = xcache_get($name);
if ($enable_eval) {
	$value = var_export($value, true);
	$editable = true;
}
else {
	if (is_string($value)) {
		$editable = true;
	}
	else {
		$editable = false;
		$value = var_export($value, true);
	}
}

$xcache_version = XCACHE_VERSION;
$xcache_modules = XCACHE_MODULES;

include("edit.tpl.php");

?>