InPlaceEditor.php

Contains \Drupal\edit\Annotation\InPlaceEditor.

Namespace

Drupal\edit\Annotation

File

drupal/core/modules/edit/lib/Drupal/edit/Annotation/InPlaceEditor.php
View source
<?php

/**
 * @file
 * Contains \Drupal\edit\Annotation\InPlaceEditor.
 */
namespace Drupal\edit\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines an InPlaceEditor annotation object.
 *
 * @Annotation
 */
class InPlaceEditor extends Plugin {

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

  /**
   * An array of in-place editors that have registered themselves as
   * alternatives to this in-place editor.
   *
   * @var array
   */
  public $alternativeTo;

  /**
   * The name of the module providing the in-place editor plugin.
   *
   * @var string
   */
  public $module;

}

Classes

Namesort descending Description
InPlaceEditor Defines an InPlaceEditor annotation object.