You are here

class LinkitPluginBroken in Linkit 7.2

A special handler to take the place of missing or broken handlers.

Hierarchy

Expanded class hierarchy of LinkitPluginBroken

File

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

View source
class LinkitPluginBroken extends LinkitPlugin {
  function ui_title() {
    return t('Broken/missing handler');
  }
  function ui_description() {
  }
  function autocomplete_callback() {
  }

  /**
   * Determine if the handler is considered 'broken'.
   */
  function broken() {
    return TRUE;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
LinkitPlugin::buildDescription function Build the search row description. 1
LinkitPlugin::buildGroup function Returns a string to use as the search result group name. 1
LinkitPlugin::buildLabel function Build the label that will be used in the search result for each row. 1
LinkitPlugin::buildPath function Build an URL based in the path and the options. 1
LinkitPlugin::buildRowClass function Returns a string with CSS classes that will be added to the search result row for this item. 1
LinkitPlugin::buildSettingsForm function Generate a settings form for this handler. Uses the standard Drupal FAPI. 1
LinkitPlugin::setSearchString function Set the search string.
LinkitPlugin::__construct function Initialize this plugin with the plugin and the profile. 1
LinkitPluginBroken::autocomplete_callback function This method gets called when searching for items to link to in the autocomplete field. Overrides LinkitPluginInterface::autocomplete_callback
LinkitPluginBroken::broken function Determine if the handler is considered 'broken'. Overrides LinkitPlugin::broken
LinkitPluginBroken::ui_description function Return a string representing this handler's description in the UI. Overrides LinkitPlugin::ui_description
LinkitPluginBroken::ui_title function Return a string representing this handler's name in the UI. Overrides LinkitPlugin::ui_title