Skip to content

Instantly share code, notes, and snippets.

@henrytran9x
Created December 2, 2016 02:42
Show Gist options
  • Save henrytran9x/b36e30aadeb8568b2b68105dd52033a4 to your computer and use it in GitHub Desktop.
Save henrytran9x/b36e30aadeb8568b2b68105dd52033a4 to your computer and use it in GitHub Desktop.
File Managed set permanent in Drupal 8 !
<?php
/* Load the object of the file by it's fid */
$file = File::load('fid_file');
/* Set the status flag permanent of the file object */
$file->setPermanent();
/* Save the file in database */
$file->save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment