You are here

public function SelectionBroken::getMatchingItems in Multi-path autocomplete 8

Returns a list of matching items.

Return value

array An array of path items. Keys are the system paths of the items and values are (safe HTML) titles of the corresponding pages.

Overrides SelectionInterface::getMatchingItems

File

lib/Drupal/mpac/Plugin/Type/Selection/SelectionBroken.php, line 19
Contains \Drupal\mpac\Plugin\Type\Selection\SelectionBroken.

Class

SelectionBroken
A null implementation of SelectionInterface.

Namespace

Drupal\mpac\Plugin\Type\Selection

Code

public function getMatchingItems($match = NULL, $match_operator = 'CONTAINS', $limit = 0) {
  return array();
}