Exemplo n.º 1
0
 /**
  * Re-apply the settings from the current dynamic config source
  *
  * It may be necessary to load some default configs after loading the client
  * config. These defaults may be overridden in the client's initial config,
  * so that will need to be re-applied once the correct defaults are included.
  *
  * This method does that
  */
 public function OverlayDynamic()
 {
     if ($this->Dynamic instanceof Gdn_ConfigurationSource) {
         self::MergeConfig($this->Data, $this->Dynamic->Export());
     }
 }