You are here

public function Framework::stateGet 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::stateGet()
  2. 7.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::stateGet()

Gets state information.

Overrides FrameworkInterface::stateGet

1 method overrides Framework::stateGet()
Drupal8::stateGet in api/src/Framework/Drupal8.php
Gets state information.

File

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

Class

Framework
The entry point for the framework.

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

public function stateGet($name, $default = NULL) {
  return $this
    ->implementor()
    ->stateGet($name, $default);
}