Closed (fixed)
Project:
Autotaggerㅤ
Version:
1.0.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
16 Aug 2023 at 07:48 UTC
Updated:
1 Sep 2023 at 14:59 UTC
Jump to comment: Most recent
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.
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
Comment #5
solimanharkas commentedComment #7
alvar0hurtad0LooksGood, thanks @solimanHarkas