2021-07-27 14:46:32 +02:00

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();
}