Embed.php

Definition of Drupal\views\Plugin\views\display\Embed.

Namespace

Drupal\views\Plugin\views\display

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/Embed.php
View source
<?php

/**
 * @file
 * Definition of Drupal\views\Plugin\views\display\Embed.
 */
namespace Drupal\views\Plugin\views\display;

use Drupal\Core\Annotation\Plugin;
use Drupal\Core\Annotation\Translation;

/**
 * The plugin that handles an embed display.
 *
 * @ingroup views_display_plugins
 *
 * @todo: Wait until annotations/plugins support access mehtods.
 * no_ui => !config('views.settings')->get('ui.show.display_embed'),
 *
 * @Plugin(
 *   id = "embed",
 *   title = @Translation("Embed"),
 *   help = @Translation("Provide a display which can be embedded using the views api."),
 *   theme = "views_view",
 *   uses_hook_menu = FALSE
 * )
 */
class Embed extends DisplayPluginBase {

}

Classes

Namesort descending Description
Embed The plugin that handles an embed display.