views-ui-display-tab-setting.html.twig

Default theme implementation for Views UI display tab settings. Template for each row inside the "boxes" on the display query edit screen. Available variables: attributes: HTML attributes such as class for the container. description: The description or label for this setting. settings_links: A list of links for this setting. defaulted: A boolean indicating the setting is in its default state. overridden: A boolean indicating the setting has been overridden from the default. See also tem

ContactFormEditForm::$emailValidator

The email validator. Type: \Egulias\EmailValidator\EmailValidator File core/modules/contact/src/ContactFormEditForm.php, line 27 Class ContactFormEditForm Base form for contact form edit forms. Namespace Drupal\contact Code protected $emailValidator;

RoleInterface::hasPermission

public RoleInterface::hasPermission($permission) Checks if the role has a permission. Parameters string $permission: The permission to check for. Return value bool TRUE if the role has the permission, FALSE if not. File core/modules/user/src/RoleInterface.php, line 42 Class RoleInterface Provides an interface defining a user role entity. Namespace Drupal\user Code public function hasPermission($permission);

ContainerForm::buildEntity

public ContainerForm::buildEntity(array $form, FormStateInterface $form_state) Builds an updated entity object based upon the submitted form values. For building the updated entity object the form's entity is cloned and the submitted form values are copied to entity properties. The form's entity remains unchanged. Parameters array $form: A nested array form elements comprising the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value \Drupal\Core\

ConfigTranslationBlockListBuilder::createInstance

public static ConfigTranslationBlockListBuilder::createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) Instantiates a new instance of this entity handler. This is a factory method that returns a new instance of this object. The factory should pass any needed dependencies into the constructor of this object, but not the container itself. Every call to this method must return a new instance of this object; that is, it may not implement a singleton. Parameters \Symfony\C

template_preprocess_system_admin_index

template_preprocess_system_admin_index(&$variables) Prepares variables for admin index templates. Default template: system-admin-index.html.twig. Parameters $variables: An associative array containing: menu_items: An array of modules to be displayed. File core/modules/system/system.admin.inc, line 80 Admin page callbacks for the system module. Code function template_preprocess_system_admin_index(&$variables) { $variables['system_compact_link'] = array( '#type' => 'system_

CommentInterface::getHomepage

public CommentInterface::getHomepage() Returns the comment author's home page address. For anonymous authors, this is the value as typed in the comment form. Return value string The homepage address of the author of the comment. File core/modules/comment/src/CommentInterface.php, line 141 Class CommentInterface Provides an interface defining a comment entity. Namespace Drupal\comment Code public function getHomepage();

NodeViewBuilder::getBuildDefaults

protected NodeViewBuilder::getBuildDefaults(EntityInterface $entity, $view_mode) Provides entity-specific defaults to the build process. Parameters \Drupal\Core\Entity\EntityInterface $entity: The entity for which the defaults should be provided. string $view_mode: The view mode that should be used. Return value array Overrides EntityViewBuilder::getBuildDefaults File core/modules/node/src/NodeViewBuilder.php, line 57 Class NodeViewBuilder View builder handler for nodes. Namespace Dru

DiffOp

@todo document @private @subpackage DifferenceEngine Hierarchy class \Drupal\Component\Diff\Engine\DiffOp File core/lib/Drupal/Component/Diff/Engine/DiffOp.php, line 10 Namespace Drupal\Component\Diff\Engine Members Name Modifiers Type Description DiffOp::$closing public property DiffOp::$orig public property DiffOp::$type public property DiffOp::nclosing public function DiffOp::norig public function DiffOp::reverse public function

FieldableEntityInterface::bundleFieldDefinitions

public static FieldableEntityInterface::bundleFieldDefinitions(EntityTypeInterface $entity_type, $bundle, array $base_field_definitions) Provides field definitions for a specific bundle. This function can return definitions both for bundle fields (fields that are not defined in $base_field_definitions, and therefore might not exist on some bundles) as well as bundle-specific overrides of base fields (fields that are defined in $base_field_definitions, and therefore exist for all bundles). Howev