devilbox/.devilbox/www/htdocs/db_redis.php

49 lines
998 B
PHP
Raw Normal View History

2017-04-23 12:08:54 +00:00
<?php require '../config.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
2017-05-15 06:56:17 +00:00
<?php echo loadClass('Html')->getHead(); ?>
2017-04-23 12:08:54 +00:00
</head>
<body>
2017-05-15 06:56:17 +00:00
<?php echo loadClass('Html')->getNavbar(); ?>
2017-04-23 12:08:54 +00:00
<div class="container">
<h1>Redis Keys</h1>
<br/>
<br/>
<div class="row">
<div class="col-md-12">
2017-05-15 06:56:17 +00:00
<?php if (!loadClass('Redis')->isAvailable()): ?>
2017-05-08 07:43:43 +00:00
<p>Redis container is not running.</p>
<?php else: ?>
<table class="table table-striped ">
<thead class="thead-inverse ">
2017-04-23 12:08:54 +00:00
<tr>
2017-05-08 07:43:43 +00:00
<th>Key</th>
<th>Value</th>
</th>
</thead>
<tbody>
<?php foreach (loadClass('Redis')->getKeys() as $key => $value): ?>
<tr>
<td><?php echo $key;?></td>
<td><?php print_r($value);?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
2017-04-23 12:08:54 +00:00
</div>
</div>
</div><!-- /.container -->
2017-05-15 06:56:17 +00:00
<?php echo loadClass('Html')->getFooter(); ?>
2017-04-23 12:08:54 +00:00
</body>
</html>