You are here

public function ConfigActionsSourceBase::isChanged in Config Actions 8

Return TRUE if the data has changed since the last load.

Return value

bool

Overrides ConfigActionsSourceInterface::isChanged

1 call to ConfigActionsSourceBase::isChanged()
ConfigActionsSourceBase::load in src/ConfigActionsSourceBase.php
Load data from the source.

File

src/ConfigActionsSourceBase.php, line 167

Class

ConfigActionsSourceBase
Base class for config_actions plugins.

Namespace

Drupal\config_actions

Code

public function isChanged() {
  return $this->changed;
}