/**
  * Populates a database
  *
  * @param $fetched_settings
  */
 public function PopulateDatabase($fetched_settings)
 {
     foreach ($fetched_settings as $key => $value) {
         /**
          * Create a new class yo
          */
         $class = new DatabaseSettings();
         /**
          * If we already have this setting skip
          */
         if ($class->ObtainSetting($key) != null) {
             continue;
         }
         /**
          * Insert this setting
          */
         $class->InsertSetting($key, $value);
         /**
          * Log it
          */
         Install::AddLog('Settings', 'Added setting: ' . $key . ' with value ' . $value . ' to the database.');
     }
 }