Skip to content

Instantly share code, notes, and snippets.

View henideepak's full-sized avatar
🎯
Focusing

Deepak Bhati henideepak

🎯
Focusing
  • DOTSQUARES GLOBAL CAPABILITY CENTER (GCC)
  • CP4-228, 229, Apparel Park, Mahal Road (Hare Krishna Marg) Jagatpura, Jaipur, Rajasthan, India 302017
View GitHub Profile
@henideepak
henideepak / create_file.php
Last active October 18, 2022 09:10 — forked from facine/__INDEX.txt
Drupal 8 - Examples
<?php
// Programmatically create files.
use Drupal\file\Entity\File;
$file = File::create([
'uid' => 1,
'filename' => 'logo.svg',
'uri' => 'public://page/logo.svg',
'status' => 1,
]);