Same name and namespace in other branches
  1. 8.x-2.x src/Annotation/FieldState.php \Drupal\field_states_ui\Annotation\FieldState 1 commentaire

Defines a field state annotation object.

Plugin Namespace: Plugin\FieldState.

For a working example, see \Drupal\field_states_ui\Plugin\FieldState\Visible

Hierarchy

  • class \Drupal\field_states_ui\Annotation\FieldState extends \Drupal\Component\Annotation\Plugin

Expanded class hierarchy of FieldState

Voir aussi

\Drupal\field_states_ui\FieldStateInterface

\Drupal\field_states_ui\FieldStateBase

\Drupal\field_states_ui\FieldStateManager

plugin_api

10 classes are annotated with FieldState
Checked dans src/Plugin/FieldState/Checked.php
Controls checkbox field widget checked state in relation to other fields.
Collapsed dans src/Plugin/FieldState/Collapsed.php
Controls details field widget collapsed state in relation to other fields.
Disabled dans src/Plugin/FieldState/Disabled.php
Controls field widget disabled state in relation to other fields dynamically.
Enabled dans src/Plugin/FieldState/Enabled.php
Controls field widget enabled state in relation to other fields dynamically.
Expanded dans src/Plugin/FieldState/Expanded.php
Controls details field widget expanded state in relation to other fields.

... See full list

Fichier

src/Annotation/FieldState.php, line 22

Namespace

Drupal\field_states_ui\Annotation
View source
class FieldState extends Plugin {
    
    /**
     * The plugin ID.
     *
     * @var string
     */
    public $id;
    
    /**
     * The human-readable name of the field state.
     *
     * @var \Drupal\Core\Annotation\Translation
     *
     * @ingroup plugin_translatable
     */
    public $label;
    
    /**
     * Optional: a brief description of the field state.
     *
     * This will be shown when adding or configuring this field state.
     *
     * @var \Drupal\Core\Annotation\Translation
     *
     * @ingroup plugin_translatable
     */
    public $description = '';

}

Members

Titre Trier par ordre décroissant Modifiers Object type Résumé
FieldState::$description public property Optional: a brief description of the field state.
FieldState::$id public property The plugin ID.
FieldState::$label public property The human-readable name of the field state.