Просмотр исходного кода

add dynamic loading of custom html in homepage order listing

CauseFX 4 лет назад
Родитель
Сommit
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
 			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>';
 			}