diff options
| author | Pim van den Berg | 2013-03-30 14:08:23 +0100 |
|---|---|---|
| committer | Pim van den Berg | 2013-03-30 14:13:23 +0100 |
| commit | 1ad4de5b08e5d9fde394380418dda6f909ff91b4 (patch) | |
| tree | d15865f975c4e21c1e4dfa87ef519d5a8c8e0683 /host.php | |
| parent | conf: disable overview_filter by default (diff) | |
| download | apt-panopticon_cgp-1ad4de5b08e5d9fde394380418dda6f909ff91b4.zip apt-panopticon_cgp-1ad4de5b08e5d9fde394380418dda6f909ff91b4.tar.gz apt-panopticon_cgp-1ad4de5b08e5d9fde394380418dda6f909ff91b4.tar.bz2 apt-panopticon_cgp-1ad4de5b08e5d9fde394380418dda6f909ff91b4.tar.xz | |
rewrite some code of added overview_filter feature
Use less variables, less code.
Diffstat (limited to '')
| -rw-r--r-- | host.php | 4 |
1 files changed, 1 insertions, 3 deletions
| @@ -22,13 +22,11 @@ if(!$plugins) { | |||
| 22 | 22 | ||
| 23 | plugins_list($host, $selected_plugins); | 23 | plugins_list($host, $selected_plugins); |
| 24 | 24 | ||
| 25 | $overview = empty($plugin) ? true : false; | ||
| 26 | |||
| 27 | echo '<div class="graphs">'; | 25 | echo '<div class="graphs">'; |
| 28 | foreach ($selected_plugins as $selected_plugin) { | 26 | foreach ($selected_plugins as $selected_plugin) { |
| 29 | if (in_array($selected_plugin, $plugins)) { | 27 | if (in_array($selected_plugin, $plugins)) { |
| 30 | plugin_header($host, $selected_plugin); | 28 | plugin_header($host, $selected_plugin); |
| 31 | graphs_from_plugin($host, $selected_plugin, $overview); | 29 | graphs_from_plugin($host, $selected_plugin, empty($plugin)); |
| 32 | } | 30 | } |
| 33 | } | 31 | } |
| 34 | echo '</div>'; | 32 | echo '</div>'; |
