Browse Source

add dynamic loading of custom html in homepage order listing

CauseFX 4 years ago
parent
commit
efc145cbb2
1 changed files with 3 additions and 0 deletions
  1. 3 0
      api/classes/organizr.class.php

+ 3 - 0
api/classes/organizr.class.php

@@ -4055,6 +4055,9 @@ class Organizr
 			//new way
 			if (method_exists($this, $key)) {
 				$homepageBuilt .= $this->$key();
+			} elseif (strpos($key, 'homepageOrdercustomhtml') !== false) {
+				$iteration = substr($key, -2);
+				$homepageBuilt .= $this->homepageOrdercustomhtml($iteration);
 			} else {
 				$homepageBuilt .= '<div id="' . $key . '"></div>';
 			}