You are here

function __drush_exif_file_update in Exif 8

Same name and namespace in other branches
  1. 8.2 exif.drush.inc \__drush_exif_file_update()
  2. 7 exif.drush.inc \__drush_exif_file_update()

Parameters

string $type:

Return value

int

Throws

\Drupal\Core\Entity\EntityStorageException

1 call to __drush_exif_file_update()
drush_exif_update in ./exif.drush.inc
Implements Drush callback.

File

./exif.drush.inc, line 310
Drush extension allowing to run some tasks related to exif.

Code

function __drush_exif_file_update($type = '') {
  $query = "SELECT n.fid FROM {file_managed} n WHERE n.type = :type";
  $result = db_query($query, [
    ':type' => $type,
  ]);
  $count = 0;
  foreach ($result as $record) {

    // Load the node object from the database.
    $file = File::load($record->fid);

    // Resave the node to make exif changes.
    $file
      ->save();
    $count++;
  }
  drush_log(dt('Updated %count %type files.', [
    '%count' => $count,
    '%type' => $type,
  ]), "ok");
  return $count;
}