You are here

feeds.install in Feeds 8.3

Same filename and directory in other branches
  1. 8.2 feeds.install
  2. 6 feeds.install
  3. 7.2 feeds.install
  4. 7 feeds.install

Install/update/uninstall hooks.

File

feeds.install
View source
<?php

/**
 * @file
 * Install/update/uninstall hooks.
 */

/**
 * Implements hook_uninstall().
 */
function feeds_uninstall() {

  // @todo remove keyvalue store and queue things.
}

/**
 * Implements hook_schema().
 */
function feeds_schema() {
  $schema['feeds_clean_list'] = [
    'description' => 'Keeps a list of items to clean after the process stage.',
    'fields' => [
      'feed_id' => [
        'description' => 'The ID of the feed.',
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
      ],
      'entity_id' => [
        'description' => 'The ID of the entity to clean.',
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
      ],
    ],
  ];
  return $schema;
}

/**
 * Resave all feed types to recalculate config dependencies.
 */
function feeds_update_8001() {
  foreach (\Drupal::entityTypeManager()
    ->getStorage('feeds_feed_type')
    ->loadMultiple() as $feed_type) {
    $feed_type
      ->save();
  }
}

/**
 * Installs new table 'feeds_clean_list'.
 */
function feeds_update_8002() {
  $database = \Drupal::database();
  $schema = $database
    ->schema();
  if (!$schema
    ->tableExists('feeds_clean_list')) {

    // Add feeds_clean_list table.
    $schema
      ->createTable('feeds_clean_list', [
      'description' => 'Keeps a list of items to clean after the process stage.',
      'fields' => [
        'feed_id' => [
          'description' => 'The ID of the feed.',
          'type' => 'int',
          'unsigned' => TRUE,
          'not null' => TRUE,
        ],
        'entity_id' => [
          'description' => 'The ID of the entity to clean.',
          'type' => 'int',
          'unsigned' => TRUE,
          'not null' => TRUE,
        ],
      ],
    ]);
  }
}

Functions

Namesort descending Description
feeds_schema Implements hook_schema().
feeds_uninstall Implements hook_uninstall().
feeds_update_8001 Resave all feed types to recalculate config dependencies.
feeds_update_8002 Installs new table 'feeds_clean_list'.