You are here

public function Framework::alter in Realistic Dummy Content 3.x

Same name and namespace in other branches
  1. 8.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::alter()
  2. 7.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::alter()

Allows third-party modules to alter data.

Overrides FrameworkInterface::alter

1 method overrides Framework::alter()
Drupal8::alter in api/src/Framework/Drupal8.php
Allows third-party modules to alter data.

File

api/src/Framework/Framework.php, line 73

Class

Framework
The entry point for the framework.

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

public function alter($type, &$data, &$context1 = NULL, &$context2 = NULL, &$context3 = NULL) {
  return self::implementor()
    ->alter($type, $data, $context1, $context2, $context3);
}