taxonomy_field_views_data_alter

taxonomy_field_views_data_alter(array &$data, FieldStorageConfigInterface $field_storage) Implements hook_field_views_data_alter(). Views integration for entity reference fields which reference taxonomy terms. Adds a term relationship to the default field data. See also views_field_default_views_data() File core/modules/taxonomy/taxonomy.views.inc, line 62 Provides views data for taxonomy.module. Code function taxonomy_field_views_data_alter(array &$data, FieldStorageConfigInterface

content_translation_language_configuration_element_process

content_translation_language_configuration_element_process(array $element, FormStateInterface $form_state, array &$form) Process callback: Expands the language_configuration form element. Parameters array $element: Form API element. Return value Processed language configuration element. File core/modules/content_translation/content_translation.module, line 471 Allows entities to be translated into different languages. Code function content_translation_language_configuration_element_proc

ImageInterface::apply

public ImageInterface::apply($operation, array $arguments = array()) Applies a toolkit operation to the image. The operation is deferred to the active toolkit. Parameters string $operation: The operation to be performed against the image. array $arguments: (optional) An associative array of arguments to be passed to the toolkit operation; for instance, ['width' => 50, 'height' => 100, 'upscale' => TRUE] Defaults to an empty array. Return value bool TRUE on success, FALSE on f

ThemeInstallerInterface::install

public ThemeInstallerInterface::install(array $theme_list, $install_dependencies = TRUE) Installs a given list of themes. Parameters array $theme_list: An array of theme names. bool $install_dependencies: (optional) If TRUE, dependencies will automatically be installed in the correct order. This incurs a significant performance cost, so use FALSE if you know $theme_list is already complete and in the correct order. Return value bool Whether any of the given themes have been installed. Throws

ViewsSearchQuery::conditions

public &ViewsSearchQuery::conditions() Returns the conditions property. Return value array The query conditions. Overrides SelectExtender::conditions File core/modules/search/src/ViewsSearchQuery.php, line 18 Class ViewsSearchQuery Extends the core SearchQuery to be able to gets its protected values. Namespace Drupal\search Code public function &conditions() { return $this->conditions; }

BookExport

Provides methods for exporting book to different formats. If you would like to add another format, swap this class in container. Hierarchy class \Drupal\book\BookExport File core/modules/book/src/BookExport.php, line 13 Namespace Drupal\book Members Name Modifiers Type Description BookExport::$bookManager protected property The book manager. BookExport::$nodeStorage protected property The node storage. BookExport::$viewBuilder protected property The node

FeedStorage

Controller class for aggregator's feeds. This extends the Drupal\Core\Entity\Sql\SqlContentEntityStorage class, adding required special handling for feed entities. Hierarchy class \Drupal\Core\Entity\EntityHandlerBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityStorageBase implements EntityHandlerInterface, EntityStorageInterfaceclass \Drupal\Core\Entity\ContentEntityStorageBase implements ContentEntityStorageInterface, DynamicallyFieldableEntityStor

NodeController::$renderer

The renderer service. Type: \Drupal\Core\Render\RendererInterface File core/modules/node/src/Controller/NodeController.php, line 33 Class NodeController Returns responses for Node routes. Namespace Drupal\node\Controller Code protected $renderer;

BlockEntityOffCanvasForm::title

public BlockEntityOffCanvasForm::title(BlockInterface $block) Provides a title callback to get the block's admin label. Parameters \Drupal\block\BlockInterface $block: The block entity. Return value \Drupal\Core\StringTranslation\TranslatableMarkup The title. File core/modules/outside_in/src/Block/BlockEntityOffCanvasForm.php, line 28 Class BlockEntityOffCanvasForm Provides form for block instance forms when used in the off-canvas tray. Namespace Drupal\outside_in\Block Code public f

ConfigTranslationController::create

public static ConfigTranslationController::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: