Пример #1
0
 /**
  * Import a large pre-formatted set of configs efficiently
  *
  * NOTE: ONLY WORKS WHEN SPLITTING IS OFF!
  *
  * @param type $Data
  */
 public function MassImport($Data)
 {
     if ($this->Splitting) {
         return;
     }
     $this->Data = array_replace($this->Data, $Data);
     if ($this->Dynamic instanceof Gdn_ConfigurationSource) {
         $this->Dynamic->MassImport($Data);
     }
 }