trait DeprecatedServicePropertyTrait
Same name in other branches
- 9 core/lib/Drupal/Core/DependencyInjection/DeprecatedServicePropertyTrait.php \Drupal\Core\DependencyInjection\DeprecatedServicePropertyTrait
- 10 core/lib/Drupal/Core/DependencyInjection/DeprecatedServicePropertyTrait.php \Drupal\Core\DependencyInjection\DeprecatedServicePropertyTrait
- 11.x core/lib/Drupal/Core/DependencyInjection/DeprecatedServicePropertyTrait.php \Drupal\Core\DependencyInjection\DeprecatedServicePropertyTrait
Provides a standard way to announce deprecated properties.
Hierarchy
- trait \Drupal\Core\DependencyInjection\DeprecatedServicePropertyTrait
106 files declare their use of DeprecatedServicePropertyTrait
- AdminNegotiator.php in core/
modules/ user/ src/ Theme/ AdminNegotiator.php - AliasManager.php in core/
lib/ Drupal/ Core/ Path/ AliasManager.php - AliasWhitelist.php in core/
lib/ Drupal/ Core/ Path/ AliasWhitelist.php - BasicAuth.php in core/
modules/ basic_auth/ src/ Authentication/ Provider/ BasicAuth.php - Block.php in core/
modules/ views/ src/ Plugin/ views/ display/ Block.php
File
-
core/
lib/ Drupal/ Core/ DependencyInjection/ DeprecatedServicePropertyTrait.php, line 8
Namespace
Drupal\Core\DependencyInjectionView source
trait DeprecatedServicePropertyTrait {
/**
* Allows to access deprecated/removed properties.
*
* This method must be public.
*/
public function __get($name) {
if (!isset($this->deprecatedProperties)) {
throw new \LogicException('The deprecatedProperties property must be defined to use this trait.');
}
if (isset($this->deprecatedProperties[$name])) {
$service_name = $this->deprecatedProperties[$name];
$class_name = static::class;
@trigger_error("The property {$name} ({$service_name} service) is deprecated in {$class_name} and will be removed before Drupal 9.0.0.", E_USER_DEPRECATED);
return \Drupal::service($service_name);
}
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
DeprecatedServicePropertyTrait::__get | public | function | Allows to access deprecated/removed properties. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.