summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/gearman
diff options
context:
space:
mode:
authorBjörn Geiger2011-07-13 14:13:34 +0200
committerBjörn Geiger2011-07-13 14:13:34 +0200
commita7814e67fab45d5586bc051375645f60463812bb (patch)
tree2afdead255e19ddbf1aaa90ed450c95de17201c8 /application/views/scripts/gearman
parentund nochmals (diff)
downloadpoolctrl-a7814e67fab45d5586bc051375645f60463812bb.tar.gz
poolctrl-a7814e67fab45d5586bc051375645f60463812bb.tar.xz
poolctrl-a7814e67fab45d5586bc051375645f60463812bb.zip
weitere Korrekturen
Diffstat (limited to 'application/views/scripts/gearman')
-rw-r--r--application/views/scripts/gearman/index.phtml13
1 files changed, 9 insertions, 4 deletions
diff --git a/application/views/scripts/gearman/index.phtml b/application/views/scripts/gearman/index.phtml
index 62a81de..41460cf 100644
--- a/application/views/scripts/gearman/index.phtml
+++ b/application/views/scripts/gearman/index.phtml
@@ -1,7 +1,12 @@
<?php
-foreach($this->view->results as $result) {
- echo "<pre>";
- var_dump($result);
- echo "</pre>";
+foreach($this->results as $k => $result) {
+?>
+<pre>
+ <h3>Result <?php echo $k; ?>:</h3>
+ <?php echo $result->rawoutput; ?><br />
+ alive: <?php if($result->alive) echo 'yes'; else echo 'no'; ?><br />
+ rc: <?php echo $result->rc; ?>
+</pre>
+<?php
}
?> \ No newline at end of file