| 1 | <?php |
||
| 8 | class DriverFieldPluginManager extends DriverPluginManagerBase { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * {@inheritdoc} |
||
| 12 | */ |
||
| 13 | protected $driverPluginType = 'DriverField'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | */ |
||
| 18 | protected $filters = [ |
||
| 19 | 'fieldNames', |
||
| 20 | 'fieldTypes', |
||
| 21 | 'entityBundles', |
||
| 22 | 'entityTypes', |
||
| 23 | ]; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | protected $specificityCriteria = [ |
||
| 29 | ['fieldNames', 'entityBundles', 'entityTypes'], |
||
| 30 | ['fieldNames', 'entityBundles'], |
||
| 31 | ['fieldNames', 'entityTypes'], |
||
| 32 | ['fieldNames', 'fieldTypes'], |
||
| 33 | ['fieldNames'], |
||
| 34 | ['fieldTypes', 'entityBundles'], |
||
| 35 | ['fieldTypes', 'entityTypes'], |
||
| 36 | ['fieldTypes'], |
||
| 37 | ['entityBundles', 'entityTypes'], |
||
| 38 | ['entityBundles'], |
||
| 39 | ['entityTypes'], |
||
| 40 | ]; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | protected function getFilterableTarget($field) { |
||
| 53 | |||
| 54 | } |
||
| 55 |