You are here

function LinkitPlugin::ui_title in Linkit 7.2

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

1 call to LinkitPlugin::ui_title()
LinkitPluginEntity::buildSettingsForm in plugins/linkit_plugins/linkit-plugin-entity.class.php
Generate a settings form for this handler. Uses the standard Drupal FAPI. The element will be attached to the "data" key.
2 methods override LinkitPlugin::ui_title()
LinkitPluginBroken::ui_title in plugins/plugin.class.php
Return a string representing this handler's name in the UI.
LinkitPluginFile::ui_title in plugins/linkit_plugins/linkit-plugin-file.class.php
Set the plugin ui title.

File

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

Class

LinkitPlugin
LinkitPlugin.

Code

function ui_title() {
  if (!isset($this->plugin['ui_title'])) {
    return check_plain($this->plugin['module'] . ':' . $this->plugin['name']);
  }
  return check_plain($this->plugin['ui_title']);
}