You are here

public function ConfigActionsTemplate::doSave in Config Actions 8

Save data to the source.

Parameters

array $data:

Return value

bool TRUE if the data was saved.

Overrides ConfigActionsSourceBase::doSave

File

src/Plugin/ConfigActionsSource/ConfigActionsTemplate.php, line 102

Class

ConfigActionsTemplate
Plugin for config source from files.

Namespace

Drupal\config_actions\Plugin\ConfigActionsSource

Code

public function doSave($data) {

  // Cannot save templates, use a File instead.
  return FALSE;
}