From: robert Date: Mon, 9 May 2005 19:24:28 +0000 (+0000) Subject: better assembling of used config based on defaults X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=commitdiff_plain;h=e1727e7f3f0d50229ce3da0e0e4410da9cb9ad58 better assembling of used config based on defaults --- diff --git a/include/classes/rrdstat.php-class b/include/classes/rrdstat.php-class index 52ecfc1..3d7b84d 100644 --- a/include/classes/rrdstat.php-class +++ b/include/classes/rrdstat.php-class @@ -48,7 +48,11 @@ class rrdstat { if (!is_null($conf_id)) { $iinfo = isset($complete_conf[$conf_id])?$complete_conf[$conf_id]:array(); - if (isset($complete_conf['*'])) { $iinfo = array_merge_recursive($complete_conf['*'], $iinfo); } + if (isset($complete_conf['*'])) { + $iinfo = (array)$iinfo + (array)$complete_conf['*']; + if (isset($complete_conf['*']['graph'])) { $iinfo['graph'] = (array)$iinfo['graph'] + (array)$complete_conf['*']['graph']; } + if (isset($complete_conf['*']['page'])) { $iinfo['page'] = (array)$iinfo['page'] + (array)$complete_conf['*']['page']; } + } } else { $iinfo = $complete_conf; @@ -234,15 +238,11 @@ class rrdstat { if (!in_array($this->status, array('ok','readonly'))) { trigger_error('Error: rrd status is '.$this->status, E_USER_WARNING); return false; } // assemble configuration - $gconf = $this->config_graph; + $gconf = (array)$extra; if (!is_null($sub) && is_array($this->config_raw['graph.'.$sub])) { - if (is_array($gconf)) { $gconf = array_merge($gconf, $this->config_raw['graph.'.$sub]); } - else { $gconf = $this->config_raw['graph.'.$sub]; } - } - if (is_array($extra)) { - if (is_array($gconf)) { $gconf = array_merge($gconf, $extra); } - else { $gconf = $extra; } + $gconf = $gconf + $this->config_raw['graph.'.$sub]; } + $gconf = $gconf + (array)$this->config_graph; if (isset($gconf['format']) && ($gconf['format'] == 'SVG')) { $format = $gconf['format']; $fmt_ext = '.svg'; @@ -456,15 +456,11 @@ class rrdstat { $basename = str_replace('.rrd', '', $this->rrd_file); // assemble configuration - $pconf = $this->config_page; + $pconf = (array)$page_extras; if (!is_null($sub) && is_array($this->config_raw['page.'.$sub])) { - if (is_array($pconf)) { $gconf = array_merge($pconf, $this->config_raw['page.'.$sub]); } - else { $pconf = $this->config_raw['page.'.$sub]; } - } - if (is_array($page_extras)) { - if (is_array($pconf)) { $pconf = array_merge($pconf, $page_extras); } - else { $pconf = $page_extras; } + $pconf = $pconf + $this->config_raw['page.'.$sub]; } + $pconf = $pconf + (array)$this->config_page; $ptitle = isset($pconf['title_page'])?$pconf['title_page']:$basename.' - RRD statistics'; $gtitle = array();