You are here

public function ConfigActionsArray::doLoad in Config Actions 8

Load data from the source.

Return value

array config data

Overrides ConfigActionsSourceBase::doLoad

File

src/Plugin/ConfigActionsSource/ConfigActionsArray.php, line 29

Class

ConfigActionsArray
Plugin for storing source data from an array. This runs last to allow any other plugins to detect themselves first.

Namespace

Drupal\config_actions\Plugin\ConfigActionsSource

Code

public function doLoad() {
  $this
    ->setMerge(TRUE);
  return $this->sourceId;
}