From b679c1e7701fddfe803e364917d0e3070c43c790 Mon Sep 17 00:00:00 2001 From: Marius Hein Date: Tue, 11 Nov 2014 16:04:51 +0100 Subject: [PATCH] Dashboard: Refactor search/replace implementation refs #4537 --- .../Icinga/Web/Widget/Dashboard/Component.php | 26 ++++++++++++++----- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/library/Icinga/Web/Widget/Dashboard/Component.php b/library/Icinga/Web/Widget/Dashboard/Component.php index 17734478c..46b49ebec 100644 --- a/library/Icinga/Web/Widget/Dashboard/Component.php +++ b/library/Icinga/Web/Widget/Dashboard/Component.php @@ -175,13 +175,25 @@ EOD; $iframeUrl = clone($url); $iframeUrl->setParam('isIframe'); - $html = str_replace('{URL}', $url, $this->template); - $html = str_replace('{IFRAME_URL}', $iframeUrl, $html); - $html = str_replace('{FULL_URL}', $url->getUrlWithout(array('view', 'limit')), $html); - $html = str_replace('{REMOVE_BTN}', $this->getRemoveForm($view), $html); - $html = str_replace('{TITLE}', $view->escape($this->getTitle()), $html); - $html = str_replace('{REMOVE}', $this->getRemoveForm(), $html); - return $html; + $searchTokens = array( + '{URL}', + '{IFRAME_URL}', + '{FULL_URL}', + '{REMOVE_BTN}', + '{TITLE}', + '{REMOVE}' + ); + + $replaceTokens = array( + $url, + $iframeUrl, + $url->getUrlWithout(array('view', 'limit')), + $this->getRemoveForm($view), + $view->escape($this->getTitle()), + $this->getRemoveForm() + ); + + return str_replace($searchTokens, $replaceTokens, $this->template); } /**