This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Implements hook_library_info_build(). | |
* | |
* @return array | |
*/ | |
function mymodule_library_info_build() { | |
$libraries = []; | |
$api_key = \Drupal::config('mymodule.api_key'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Implements hook_drush_command(). | |
*/ | |
function setlangcode_drush_command() { | |
$items = array(); | |
// The 'setlangcode' command. | |
$items['setlangcode'] = array( | |
'description' => "Sets the language code for certain types of entities.", |