Embed.php in Views (for Drupal 7) 8.3
Definition of Drupal\views\Plugin\views\display\Embed.
Namespace
Drupal\views\Plugin\views\displayFile
lib/Drupal/views/Plugin/views/display/Embed.phpView 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 {
}