You are here

function LinkitPlugin::ui_description in Linkit 7.2

Return a string representing this handler's description in the UI.

2 methods override LinkitPlugin::ui_description()
LinkitPluginBroken::ui_description in plugins/plugin.class.php
Return a string representing this handler's description in the UI.
LinkitPluginFile::ui_description in plugins/linkit_plugins/linkit-plugin-file.class.php
Set the plugin ui description.

File

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

Class

LinkitPlugin
LinkitPlugin.

Code

function ui_description() {
  if (isset($this->plugin['ui_description'])) {
    return check_plain($this->plugin['ui_description']);
  }
}