From c41160405d886c338e99c2e331a11c6c079a5cac Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Sat, 8 Mar 2014 19:49:57 +0100 Subject: [PATCH] Dedicated view script for object actions --- .../scripts/show/components/actions.phtml | 39 +++++++++++++++++++ .../scripts/show/components/status.phtml | 37 ------------------ 2 files changed, 39 insertions(+), 37 deletions(-) create mode 100644 modules/monitoring/application/views/scripts/show/components/actions.phtml diff --git a/modules/monitoring/application/views/scripts/show/components/actions.phtml b/modules/monitoring/application/views/scripts/show/components/actions.phtml new file mode 100644 index 000000000..9f3211bd3 --- /dev/null +++ b/modules/monitoring/application/views/scripts/show/components/actions.phtml @@ -0,0 +1,39 @@ +action_url && ! $object->notes_url) { + return; +} + +$links = array(); +$linkText = '%s'; + +if ($object->notes_url) { + if (strpos($object->notes_url, "' ") === false) { + $links[] = sprintf($linkText, $this->resolveMacros($object->notes_url, $object), 'Notes'); + } else { + // TODO: We should find out document what's going on here. Looks strange :p + foreach(explode("' ", $object->notes_url) as $url) { + $url = strpos($url, "'") === 0 ? substr($url, 1) : $url; + $url = strrpos($url, "'") === strlen($url) - 1 ? substr($url, 0, strlen($url) - 1) : $url; + $links[] = sprintf($linkText, $this->resolveMacros($url, $object), 'Notes'); + } + } +} +if ($object->action_url) { + if (strpos($object->action_url, "' ") === false) { + $links[] = sprintf($linkText, $this->resolveMacros($object->action_url, $object), 'Action'); + } else { + // TODO: We should find out document what's going on here. Looks strange :p + foreach(explode("' ", $object->action_url) as $url) { + $url = strpos($url, "'") === 0 ? substr($url, 1) : $url; + $url = strrpos($url, "'") === strlen($url) - 1 ? substr($url, 0, strlen($url) - 1) : $url; + $links[] = sprintf($linkText, $this->resolveMacros($url, $object), 'Action'); + } + } +} + +?> + + Foreign URLs + + diff --git a/modules/monitoring/application/views/scripts/show/components/status.phtml b/modules/monitoring/application/views/scripts/show/components/status.phtml index d1b69f230..458c08c8b 100644 --- a/modules/monitoring/application/views/scripts/show/components/status.phtml +++ b/modules/monitoring/application/views/scripts/show/components/status.phtml @@ -14,43 +14,6 @@ } ?>
-
-
- - -
- - action_url || $object->notes_url): ?> -
- notes_url): ?> - notes_url, "' ") === false): ?> - Notes - - notes_url) as $url): ?> - - - Notes - - - - action_url): ?> - action_url, "' ") === false): ?> - Action - - action_url) as $url): ?> - - - Action - - - - -
-
-
- -
-