locale_translation_check_projects_local($projects = array(), $langcodes = array())
Check and store the status and timestamp of local po files.
Only po files in the local file system are checked. Any remote translation files will be ignored.
Projects may contain a server_pattern option containing a pattern of the path to the po source files. If no server_pattern is defined the default translation directory is checked for the po file. When a server_pattern is defined the specified location is checked. The server_pattern can be set in the module's .info.yml file or by using hook_locale_translation_projects_alter().
array $projects: Array of project names for which to check the state of translation files. Defaults to all translatable projects.
array $langcodes: Array of language codes. Defaults to all translatable languages.
function locale_translation_check_projects_local($projects = array(), $langcodes = array()) { $projects = locale_translation_get_projects($projects); $langcodes = $langcodes ? $langcodes : array_keys(locale_translatable_language_list()); // For each project and each language we check if a local po file is // available. When found the source object is updated with the appropriate // type and timestamp of the po file. foreach ($projects as $name => $project) { foreach ($langcodes as $langcode) { $source = locale_translation_source_build($project, $langcode); $file = locale_translation_source_check_file($source); locale_translation_status_save($name, $langcode, LOCALE_TRANSLATION_LOCAL, $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.compare.inc/function/locale_translation_check_projects_local/8.1.x