forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
21 lines
448 B
PHP
21 lines
448 B
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Install, uninstall, schema and update hooks for Language Icons.
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
/**
|
|
* Implements hook_install().
|
|
*/
|
|
function languageicons_install() {
|
|
// Use our supplied set of icons by default.
|
|
$path = \Drupal::service('extension.list.module')->getPath('languageicons') . '/flags/*.png';
|
|
\Drupal::configFactory()
|
|
->getEditable('languageicons.settings')
|
|
->set('path', $path)
|
|
->save();
|
|
}
|