19 lines
395 B
Plaintext
19 lines
395 B
Plaintext
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Install, uninstall, schema and update hooks for Language Icons.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Implements hook_install().
|
||
|
*/
|
||
|
function languageicons_install() {
|
||
|
// Use our supplied set of icons by default.
|
||
|
$path = drupal_get_path('module', 'languageicons') . '/flags/*.png';
|
||
|
\Drupal::configFactory()
|
||
|
->getEditable('languageicons.settings')
|
||
|
->set('path', $path)
|
||
|
->save();
|
||
|
}
|