Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Extension.php

function Extension::fields

Overrides MigrateSourceInterface::fields

File

core/modules/system/src/Plugin/migrate/source/Extension.php, line 55

Class

Extension
Drupal 6/7 system data for a legacy extension source from database.

Namespace

Drupal\system\Plugin\migrate\source

Code

public function fields() {
    $fields = [
        'filename' => $this->t('Filename'),
        'name' => $this->t('Name'),
        'type' => $this->t('Type'),
        'owner' => $this->t('Owner'),
        'status' => $this->t('Status'),
        'throttle' => $this->t('Throttle'),
        'bootstrap' => $this->t('Bootstrap'),
        'schema_version' => $this->t('Schema version'),
        'weight' => $this->t('Weight'),
        'info' => $this->t('Information array'),
    ];
    return $fields;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal