class ViewTestConfigInstaller

Defines a configuration installer.

A config installer imports test views for views testing.

Hierarchy

Expanded class hierarchy of ViewTestConfigInstaller

See also

\Drupal\Core\Config\ConfigImporter

\Drupal\views\Tests\ViewTestData

File

drupal/core/modules/views/lib/Drupal/views/Tests/ViewTestConfigInstaller.php, line 20
Contains \Drupal\views\Tests\ViewTestConfigInstaller.

Namespace

Drupal\views\Tests
View source
class ViewTestConfigInstaller extends ConfigImporter {

  /**
   * The name used to identify events and the lock.
   */
  const ID = 'views.test.installer';

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigImporter::$configFactory protected property The configuration factory.
ConfigImporter::$context protected property The configuration context.
ConfigImporter::$entityManager protected property The plugin manager for entities.
ConfigImporter::$eventDispatcher protected property The event dispatcher used to notify subscribers.
ConfigImporter::$lock protected property The used lock backend instance.
ConfigImporter::$processed protected property List of changes processed by the import().
ConfigImporter::$storageComparer protected property The storage comparer used to discover configuration changes.
ConfigImporter::$validated protected property Indicates changes to import have been validated.
ConfigImporter::alreadyImporting public function Determines if a import is already running.
ConfigImporter::getId public function Returns the identifier for events and locks.
ConfigImporter::getProcessed public function Gets list of processed changes.
ConfigImporter::getStorageComparer public function Gets the configuration storage comparer.
ConfigImporter::getUnprocessed public function Gets a list of unprocessed changes for a given operation.
ConfigImporter::hasUnprocessedChanges public function Checks if there are any unprocessed changes.
ConfigImporter::import public function Imports the changelist to the target storage.
ConfigImporter::importConfig protected function Writes an array of config changes from the source to the target storage.
ConfigImporter::importInvokeOwner protected function Invokes import* methods on configuration entity storage controllers.
ConfigImporter::notify protected function Dispatches a config importer event.
ConfigImporter::reset public function Resets the storage comparer and processed list.
ConfigImporter::setProcessed protected function Sets a change as processed.
ConfigImporter::validate public function Dispatches validate event for a ConfigImporter object.
ConfigImporter::__construct public function Constructs a configuration import object.
ViewTestConfigInstaller::ID constant The name used to identify events and the lock. Overrides ConfigImporter::ID