function locale_translate_file_create

locale_translate_file_create($filepath)

Creates a file object and populates the timestamp property.

Parameters

string $filepath: The filepath of a file to import.

Return value

object An object representing the file.

File

core/modules/locale/locale.bulk.inc, line 426
Mass import-export and batch import functionality for Gettext .po files.

Code

function locale_translate_file_create($filepath) {
  $file = new stdClass();
  $file->filename = drupal_basename($filepath);
  $file->uri = $filepath;
  $file->timestamp = filemtime($file->uri);
  return $file;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!locale!locale.bulk.inc/function/locale_translate_file_create/8.1.x