function aggregator_sanitize_configuration

Checks and sanitizes the aggregator configuration.

Goes through all fetchers, parsers and processors and checks whether they are available. If one is missing resets to standard configuration.

Return value

TRUE if this function resets the configuration; FALSE if not.

1 call to aggregator_sanitize_configuration()
aggregator_admin_form in drupal/core/modules/aggregator/aggregator.admin.inc
Form constructor for the aggregator system settings.

File

drupal/core/modules/aggregator/aggregator.module, line 763
Used to aggregate syndicated content (RSS, RDF, and Atom).

Code

function aggregator_sanitize_configuration() {
  $reset = FALSE;
  list($fetcher, $parser, $processors) = _aggregator_get_variables();
  if (!module_exists($fetcher)) {
    $reset = TRUE;
  }
  if (!module_exists($parser)) {
    $reset = TRUE;
  }
  foreach ($processors as $processor) {
    if (!module_exists($processor)) {
      $reset = TRUE;
      break;
    }
  }
  if ($reset) {

    // Reset aggregator config if necessary using the module defaults.
    config('aggregator.settings')
      ->set('fetcher', 'aggregator')
      ->set('parser', 'aggregator')
      ->set('processors', array(
      'aggregator' => 'aggregator',
    ))
      ->save();
    return TRUE;
  }
  return FALSE;
}