BaseFieldDefinition::$schema

The field schema. Type: array File core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 40 Class BaseFieldDefinition A class for defining entity fields. Namespace Drupal\Core\Field Code protected $schema;

BaseFieldDefinition

A class for defining entity fields. Hierarchy class \Drupal\Core\TypedData\DataDefinition implements \ArrayAccess, DataDefinitionInterfaceclass \Drupal\Core\TypedData\ListDataDefinition implements ListDataDefinitionInterfaceclass \Drupal\Core\Field\BaseFieldDefinition implements FieldDefinitionInterface, FieldStorageDefinitionInterface uses UnchangingCacheableDependencyTrait File core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 15 Namespace Drupal\Core\Field Members Name M

BaseFieldDefinition::$indexes

Type: array File core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 45 Class BaseFieldDefinition A class for defining entity fields. Namespace Drupal\Core\Field Code protected $indexes = array();

BaseCommand::$data

The data to pass on to the client side. Type: string File core/lib/Drupal/Core/Ajax/BaseCommand.php, line 22 Class BaseCommand Base command that only exists to simplify AJAX commands. Namespace Drupal\Core\Ajax Code protected $data;

BaseCommand::__construct

public BaseCommand::__construct($command, $data) Constructs a BaseCommand object. Parameters string $command: The name of the command. string $data: The data to pass on to the client side. File core/lib/Drupal/Core/Ajax/BaseCommand.php, line 32 Class BaseCommand Base command that only exists to simplify AJAX commands. Namespace Drupal\Core\Ajax Code public function __construct($command, $data) { $this->command = $command; $this->data = $data; }

BaseCommand::render

public BaseCommand::render() Return an array to be run through json_encode and sent to the client. Overrides CommandInterface::render File core/lib/Drupal/Core/Ajax/BaseCommand.php, line 40 Class BaseCommand Base command that only exists to simplify AJAX commands. Namespace Drupal\Core\Ajax Code public function render() { return array( 'command' => $this->command, 'data' => $this->data, ); }

BaseCommand::$command

The name of the command. Type: string File core/lib/Drupal/Core/Ajax/BaseCommand.php, line 15 Class BaseCommand Base command that only exists to simplify AJAX commands. Namespace Drupal\Core\Ajax Code protected $command;

BareHtmlPageRendererInterface

Bare HTML page renderer. By "bare HTML page", we mean that the following hooks that allow for "normal" pages are not invoked: hook_page_attachments() hook_page_attachments_alter() hook_page_top() hook_page_bottom() Examples of bare HTML pages are: install.php update.php authorize.php maintenance mode exception handlers i.e. use this when rendering HTML pages in limited environments. Otherwise, use a _controller route, and return a render array. This will cause a main content renderer

BaseCommand

Base command that only exists to simplify AJAX commands. Hierarchy class \Drupal\Core\Ajax\BaseCommand implements CommandInterface File core/lib/Drupal/Core/Ajax/BaseCommand.php, line 8 Namespace Drupal\Core\Ajax Members Name Modifiers Type Description BaseCommand::$command protected property The name of the command. BaseCommand::$data protected property The data to pass on to the client side. BaseCommand::render public function Return an array to be run

BareHtmlPageRendererInterface::renderBarePage

public BareHtmlPageRendererInterface::renderBarePage(array $content, $title, $page_theme_property, array $page_additions = []) Renders a bare page. Parameters array $content: The main content to render in the 'content' region. string $title: The title for this maintenance page. string $page_theme_property: The #theme property to set on #type 'page'. array $page_additions: Additional regions to add to the page. May also be used to pass the #show_messages property for #type 'page'. Return value