Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 13 |
| LocaleController | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
12 | |
0.00% |
0 / 13 |
| checkTranslation | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 8 |
|||
| translatePage | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 5 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\locale\Controller\LocaleController. | |
| */ | |
| namespace Drupal\locale\Controller; | |
| use Drupal\Core\Controller\ControllerBase; | |
| /** | |
| * Return response for manual check translations. | |
| */ | |
| class LocaleController extends ControllerBase { | |
| /** | |
| * Checks for translation updates and displays the translations status. | |
| * | |
| * Manually checks the translation status without the use of cron. | |
| * | |
| * @return \Symfony\Component\HttpFoundation\RedirectResponse | |
| * A redirection to translations reports page. | |
| */ | |
| public function checkTranslation() { | |
| $this->moduleHandler()->loadInclude('locale', 'inc', 'locale.compare'); | |
| // Check translation status of all translatable project 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 $this->redirect('locale.translate_status'); | |
| } | |
| /** | |
| * Shows the string search screen. | |
| * | |
| * @return array | |
| * The render array for the string search screen. | |
| */ | |
| public function translatePage() { | |
| return array( | |
| 'filter' => $this->formBuilder()->getForm('Drupal\locale\Form\TranslateFilterForm'), | |
| 'form' => $this->formBuilder()->getForm('Drupal\locale\Form\TranslateEditForm'), | |
| ); | |
| } | |
| } |