Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
3 / 3 |
| DiscoveryCachedTrait | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
2 | |
100.00% |
3 / 3 |
| getDefinition | |
100.00% |
1 / 1 |
2 | |
100.00% |
3 / 3 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\Component\Plugin\Discovery\DiscoveryCachedTrait. | |
| */ | |
| namespace Drupal\Component\Plugin\Discovery; | |
| trait DiscoveryCachedTrait { | |
| use DiscoveryTrait; | |
| /** | |
| * Cached definitions array. | |
| * | |
| * @var array | |
| */ | |
| protected $definitions; | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| public function getDefinition($plugin_id, $exception_on_invalid = TRUE) { | |
| // Fetch definitions if they're not loaded yet. | |
| if (!isset($this->definitions)) { | |
| $this->getDefinitions(); | |
| } | |
| return $this->doGetDefinition($this->definitions, $plugin_id, $exception_on_invalid); | |
| } | |
| } |