public PhpTransliteration::__construct($data_directory = NULL, ModuleHandlerInterface$module_handler)
Constructs a PhpTransliteration object.
Parameters
string $data_directory: (optional) The directory where data files reside. If omitted, defaults to subdirectory 'data' underneath the directory where the class's PHP file resides.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler to execute the transliteration_overrides alter hook.
Overrides PhpTransliteration::__construct
File
- core/lib/Drupal/Core/Transliteration/PhpTransliteration.php, line 33
Class
- PhpTransliteration
- Enhances PhpTransliteration with an alter hook.
Namespace
Drupal\Core\Transliteration
Code
1 2 3 4 5 | public function __construct( $data_directory = NULL, ModuleHandlerInterface $module_handler ) { parent::__construct( $data_directory ); $this ->moduleHandler = $module_handler ; } |
Please login to continue.