PHP code example of rockett / textformatter-typographer
1. Go to this page and download the library: Download rockett/textformatter-typographer library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
rockett / textformatter-typographer example snippets
print $modules
->get('TextformatterTypographer')
->formatString('"Hello, world!"');
wire()->addHookAfter('TextformatterTypographer::customTypographerSettings', function (HookEvent $event) {
/** @var \PHP_Typography\Settings $settings */
$settings = $event->return;
$lang = $event->user->language->name;
// Set configurations based on language, for example:
if ($lang === 'de') {
$settings->set_hyphenation_language('de');
$settings->set_smart_quotes_primary('doubleLow9Reversed');
$settings->set_smart_quotes_secondary('singleLow9Reversed');
}
});