function LinkitPluginNode::buildLabel in Linkit 7.2
Returns a string which will be used as the search result label for this item.
Overrides LinkitPluginEntity::buildLabel
File
- plugins/
linkit_plugins/ linkit-plugin-node.class.php, line 12 - Define Linkit node plugin class.
Class
- LinkitPluginNode
- @file Define Linkit node plugin class.
Code
function buildLabel($entity) {
$label = parent::buildLabel($entity);
return $label;
}