Explorar o código

add dynamic loading of custom html in homepage order listing

CauseFX %!s(int64=4) %!d(string=hai) anos
pai
achega
efc145cbb2
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  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>';
 			}