You are here

Embed.php in Zircon Profile 8

File

core/modules/views/src/Plugin/views/display/Embed.php
View source
<?php

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


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

}

Classes

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