Drupal::service

public static Drupal::service($id)

Retrieves a service from the container.

Use this method if the desired service is not one of those with a dedicated accessor method below. If it is listed below, those methods are preferred as they can return useful type hints.

Parameters

string $id: The ID of the service to retrieve.

Return value

mixed The specified service.

File

core/lib/Drupal.php, line 157
Contains \Drupal.

Class

Drupal
Static Service Container wrapper.

Code

public static function service($id) {
  return static::getContainer()->get($id);
}
doc_Drupal
2016-10-29 09:02:49
Comments
Leave a Comment

Please login to continue.