summaryrefslogtreecommitdiffstats
path: root/application/views/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/scripts')
-rw-r--r--application/views/scripts/gearman/index.phtml12
-rw-r--r--application/views/scripts/gearman/someping.phtml12
2 files changed, 12 insertions, 12 deletions
diff --git a/application/views/scripts/gearman/index.phtml b/application/views/scripts/gearman/index.phtml
index 41460cf..e69de29 100644
--- a/application/views/scripts/gearman/index.phtml
+++ b/application/views/scripts/gearman/index.phtml
@@ -1,12 +0,0 @@
-<?php
-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
diff --git a/application/views/scripts/gearman/someping.phtml b/application/views/scripts/gearman/someping.phtml
new file mode 100644
index 0000000..ce458c8
--- /dev/null
+++ b/application/views/scripts/gearman/someping.phtml
@@ -0,0 +1,12 @@
+<?php
+foreach($this->results as $k => $result) {
+?>
+<h3>Result <?php echo $k; ?>:</h3>
+<pre>
+ <?php echo $result->rawoutput; ?><br />
+ alive: <?php if($result->alive) echo 'yes'; else echo 'no'; ?><br />
+ returncode: <?php echo $result->rc; ?>
+</pre>
+<?php
+}
+?> \ No newline at end of file