summaryrefslogtreecommitdiffstats
path: root/app/model/pad.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2018-10-22 05:08:37 -0400
committerMalf Furious <m@lfurio.us>2018-10-22 05:08:37 -0400
commit325b697fed92cb56eaa05841e03462b7b2f0c385 (patch)
tree9705c6f84de936c82ee7fead97fae1aa53f0a3e4 /app/model/pad.php
parent9f0045366490199d2fcd562f8ddc4fc3503b3126 (diff)
downloadscrott-325b697fed92cb56eaa05841e03462b7b2f0c385.tar.gz
scrott-325b697fed92cb56eaa05841e03462b7b2f0c385.zip
pad: Render issue modals on pad view
This logic instanciates an issue modal view for each issue to be accessable from a pad view.
Diffstat (limited to '')
-rw-r--r--app/model/pad.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/model/pad.php b/app/model/pad.php
index d29b1f6..d7cfb23 100644
--- a/app/model/pad.php
+++ b/app/model/pad.php
@@ -18,4 +18,12 @@ $pad = getPageObj();
$stages = $pad->getStages();
$stages = array_reverse($stages);
+$issues = array();
+
+foreach ($stages as $s)
+{
+ $i = $s->getIssues_ordByDueByNumb();
+ $issues = array_merge($issues, $i);
+}
+
?>