瀏覽代碼

add dynamic loading of custom html in homepage order listing

CauseFX 5 年之前
父節點
當前提交
efc145cbb2
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      api/classes/organizr.class.php

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

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