You are here

function LinkitPlugin::buildGroup in Linkit 7.2

Returns a string to use as the search result group name.

1 method overrides LinkitPlugin::buildGroup()
LinkitPluginEntity::buildGroup in plugins/linkit_plugins/linkit-plugin-entity.class.php
When "group_by_bundle" is active, we need to add the bundle name to the group, else just return the entity label.

File

plugins/plugin.class.php, line 103
Linkit Plugin interface.

Class

LinkitPlugin
LinkitPlugin.

Code

function buildGroup($group_name) {
  return check_plain($group_name);
}