12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- * @file
- * Interface translation summary, editing and deletion user interfaces.
- */
- use Drupal\Core\Link;
- use Drupal\Core\Url;
- use Symfony\Component\HttpFoundation\RedirectResponse;
- /**
- * Page callback: Checks for translation updates and displays the status.
- *
- * Manually checks the translation status without the use of cron.
- *
- * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. It is unused by
- * Drupal core. Duplicate this function in your own extension if you need its
- * behavior.
- *
- * @see https://www.drupal.org/node/2931188
- */
- function locale_translation_manual_status() {
- @trigger_error('locale_translation_manual_status() is deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. It is unused by Drupal core. Duplicate this function in your own extension if you need its behavior.', E_USER_DEPRECATED);
- module_load_include('compare.inc', 'locale');
- // Check the translation status of all translatable projects in all languages.
- // First we clear the cached list of projects. Although not strictly
- // necessary, this is helpful in case the project list is out of sync.
- locale_translation_flush_projects();
- locale_translation_check_projects();
- // Execute a batch if required. A batch is only used when remote files
- // are checked.
- if (batch_get()) {
- return batch_process('admin/reports/translations');
- }
- return new RedirectResponse(Url::fromRoute('locale.translate_status', [], ['absolute' => TRUE])->toString());
- }
- /**
- * Prepares variables for translation status information templates.
- *
- * Translation status information is displayed per language.
- *
- * Default template: locale-translate-edit-form-strings.html.twig.
- *
- * @param array $variables
- * An associative array containing:
- * - updates: The projects which have updates.
- * - not_found: The projects which updates are not found.
- *
- * @see \Drupal\locale\Form\TranslationStatusForm
- */
- function template_preprocess_locale_translation_update_info(array &$variables) {
- foreach ($variables['updates'] as $update) {
- $variables['modules'][] = $update['name'];
- }
- }
- /**
- * Prepares variables for most recent translation update templates.
- *
- * Displays the last time we checked for locale update data. In addition to
- * properly formatting the given timestamp, this function also provides a "Check
- * manually" link that refreshes the available update and redirects back to the
- * same page.
- *
- * Default template: locale-translation-last-check.html.twig.
- *
- * @param array $variables
- * An associative array containing:
- * - last: The timestamp when the site last checked for available updates.
- *
- * @see \Drupal\locale\Form\TranslationStatusForm
- */
- function template_preprocess_locale_translation_last_check(array &$variables) {
- $last = $variables['last'];
- $variables['last_checked'] = ($last != NULL);
- $variables['time'] = \Drupal::service('date.formatter')->formatTimeDiffSince($last);
- $variables['link'] = Link::fromTextAndUrl(t('Check manually'), Url::fromRoute('locale.check_translation', [], ['query' => \Drupal::destination()->getAsArray()]))->toString();
- }
|