Merge pull request #19594 from eileenmcnaughton/535m
[civicrm-core.git] / setup / plugins / blocks / l10n.civi-setup.php
CommitLineData
4bcd4c62
TO
1<?php
2if (!defined('CIVI_SETUP')) {
3 exit("Installation plugins must only be loaded by the installer.\n");
4}
5
6\Civi\Setup::dispatcher()
7 ->addListener('civi.setupui.boot', function (\Civi\Setup\UI\Event\UIBootEvent $e) {
8 \Civi\Setup::log()->info(sprintf('[%s] Register blocks', basename(__FILE__)));
9
10 /**
11 * @var \Civi\Setup\UI\SetupController $ctrl
12 */
13 $ctrl = $e->getCtrl();
14
15 $ctrl->blocks['l10n'] = array(
16 'is_active' => TRUE,
17 'file' => __DIR__ . DIRECTORY_SEPARATOR . 'l10n.tpl.php',
18 'class' => 'if-no-errors',
19 'weight' => 30,
20 );
21 }, \Civi\Setup::PRIORITY_PREPARE);