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

Breadcrumb

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

function SkipOnEmpty::process

Stops processing the current property when value is not set.

Parameters

mixed $value: The input value.

\Drupal\migrate\MigrateExecutableInterface $migrate_executable: The migration in which this process is being executed.

\Drupal\migrate\Row $row: The row from the source to process.

string $destination_property: The destination property currently worked on. This is only used together with the $row above.

Return value

mixed The input value, $value, if it is not empty.

File

core/modules/migrate/src/Plugin/migrate/process/SkipOnEmpty.php, line 125

Class

SkipOnEmpty
Skips processing the current row when the input value is empty.

Namespace

Drupal\migrate\Plugin\migrate\process

Code

public function process($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
    if (!$value) {
        $this->stopPipeline();
        return NULL;
    }
    return $value;
}

API Navigation

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