The search in text plugin uses a notation propterty called "configurable"

/**
 * Plugin implementation of the autotagger.
 *
 * @Autotagger(
 *   id = "search_in_text_fields",
 *   label = @Translation("Search in Text fields"),
 *   description = @Translation("Searches in text fields and adds tags based on text matches."),
 *   configurable = false
 * )
 */

But it's not declared in the Annotation definition for the plugin

/**
 * Defines autotagger annotation object.
 *
 * @Annotation
 */
class Autotagger extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The human-readable name of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title;

  /**
   * The description of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $description;

}

We need to add to the Annotation definition.

Issue fork autotagger-3381381

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

alvar0hurtad0 created an issue. See original summary.

SolimanHarkas made their first commit to this issue’s fork.

solimanharkas’s picture

Status: Active » Needs review

alvar0hurtad0’s picture

Status: Needs review » Fixed

LooksGood, thanks @solimanHarkas

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.