Skip to content

Instantly share code, notes, and snippets.

View PSF1's full-sized avatar
☀️
Focusing

Pedro Peláez PSF1

☀️
Focusing
View GitHub Profile
@PSF1
PSF1 / drupal-8-cheatsheet.md
Created November 14, 2023 15:55 — forked from cesarmiquel/drupal-8-cheatsheet.md
Drupal 8/9/10 Cheatsheet

Drupal 8 Cheatsheet

Files, Images and Media

// Load file object
$file = File::load($fid);

// Get uri (public://foo/bar/baz.png)
$uri = $file->getFileUri();
<?php
$query = \Drupal::entityQuery('cub');
$result = $query->execute();
$entidadesIDs = array_values($result);
// object $entidad con todas los registros guardasdos de cub
$entidades = entity_load_multiple('cub', $entidadesIDs);
?>