class SelectionBroken in Multi-path autocomplete 8
A null implementation of SelectionInterface.
Hierarchy
- class \Drupal\mpac\Plugin\Type\Selection\SelectionBroken implements SelectionInterface
Expanded class hierarchy of SelectionBroken
1 file declares its use of SelectionBroken
- SelectionPluginManager.php in lib/
Drupal/ mpac/ Plugin/ Type/ SelectionPluginManager.php - Contains \Drupal\mpac\Plugin\Type\SelectionPluginManager.
File
- lib/
Drupal/ mpac/ Plugin/ Type/ Selection/ SelectionBroken.php, line 13 - Contains \Drupal\mpac\Plugin\Type\Selection\SelectionBroken.
Namespace
Drupal\mpac\Plugin\Type\SelectionView source
class SelectionBroken implements SelectionInterface {
public function countMatchingItems($match = NULL, $match_operator = 'CONTAINS') {
return 0;
}
public function getMatchingItems($match = NULL, $match_operator = 'CONTAINS', $limit = 0) {
return array();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SelectionBroken:: |
public | function |
Counts items that matches against the given string. Overrides SelectionInterface:: |
|
SelectionBroken:: |
public | function |
Returns a list of matching items. Overrides SelectionInterface:: |