FileTransfer::connect

abstract public FileTransfer::connect() Connects to the server. File core/lib/Drupal/Core/FileTransfer/FileTransfer.php, line 108 Class FileTransfer Defines the base FileTransfer class. Namespace Drupal\Core\FileTransfer Code abstract public function connect();

EntityFieldManager::$fieldMapByFieldType

An array keyed by field type. Each value is an array whose key are entity types including arrays in the same form that $fieldMap. It helps access the mapping between types and fields by the field type. Type: array File core/lib/Drupal/Core/Entity/EntityFieldManager.php, line 75 Class EntityFieldManager Manages the discovery of entity fields. Namespace Drupal\Core\Entity Code protected $fieldMapByFieldType = [];

block_post_update_disable_blocks_with_missing_contexts

block_post_update_disable_blocks_with_missing_contexts() Disable all blocks with missing context IDs in block_update_8001(). File core/modules/block/block.post_update.php, line 16 Post update functions for Block. Code function block_post_update_disable_blocks_with_missing_contexts() { // Don't execute the function if block_update_8002() got executed already, // which used to do the same. Note: Its okay to check here, because // update_do_one() does not update the installed schema versio

SessionManager::$writeSafeHandler

The write safe session handler. @todo: This reference should be removed once all database queries are removed from the session manager class. Type: \Drupal\Core\Session\WriteSafeSessionHandlerInterface File core/lib/Drupal/Core/Session/SessionManager.php, line 68 Class SessionManager Manages user sessions. Namespace Drupal\Core\Session Code protected $writeSafeHandler;

ConfigTranslationBlockListBuilder::sortRows

public ConfigTranslationBlockListBuilder::sortRows($a, $b) Sorts an array by value. Parameters array $a: First item for comparison. array $b: Second item for comparison. Return value int The comparison result for uasort(). Overrides ConfigTranslationEntityListBuilder::sortRows File core/modules/config_translation/src/Controller/ConfigTranslationBlockListBuilder.php, line 95 Class ConfigTranslationBlockListBuilder Defines the config translation list builder for blocks. Namespace Drupal

ConfigMapperInterface::getAddRouteName

public ConfigMapperInterface::getAddRouteName() Returns route name for the translation add form route. Return value string Route name for the mapper. File core/modules/config_translation/src/ConfigMapperInterface.php, line 98 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getAddRouteName();

breakpoint.module

Manage breakpoints and breakpoint groups for responsive designs. File core/modules/breakpoint/breakpoint.module Functions Name Description breakpoint_help Implements hook_help(). breakpoint_themes_installed Implements hook_themes_installed() breakpoint_themes_uninstalled Implements hook_themes_uninstalled()

ConfigurableLanguageManager::getFallbackCandidates

public ConfigurableLanguageManager::getFallbackCandidates(array $context = array()) Returns the language fallback candidates for a given context. Parameters array $context: (optional) An associative array of data that can be useful to determine the fallback sequence. The following keys are used in core: langcode: Language code of the desired language. operation: The name of the operation indicating the context where language fallback is being applied. The following operations are defined in

File::setSize

public File::setSize($size) Sets the size of the file. Parameters int $size: The size of the file in bytes. Overrides FileInterface::setSize File core/modules/file/src/Entity/File.php, line 101 Class File Defines the file entity class. Namespace Drupal\file\Entity Code public function setSize($size) { $this->get('filesize')->value = $size; }

RecursiveValidator::inContext

public RecursiveValidator::inContext(ExecutionContextInterface $context) Returns a validator in the given execution context. The returned validator adds all generated violations to the given context. Parameters ExecutionContextInterface $context The execution context: Return value ContextualValidatorInterface The validator for that context Overrides ValidatorInterface::inContext File core/lib/Drupal/Core/TypedData/Validation/RecursiveValidator.php, line 61 Class RecursiveValidator Define