File: /home/accemeff/vendor/craftcms/cms/src/helpers/Stringy.php
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\helpers;
use Craft;
/**
* The entire purpose of this class is so we can get at the charsArray in Stringy, which is a protected method
* and the creators did not want to expose as public.
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0
*/
class Stringy extends \Stringy\Stringy
{
// Static
// =========================================================================
/**
* Public wrapper for [[langSpecificCharsArray()]].
*
* @param string $language Language of the source string
* @return array An array of replacements
*/
public static function getLangSpecificCharsArray(string $language = 'en'): array
{
return static::langSpecificCharsArray($language);
}
// Public Methods
// =========================================================================
/**
* Public wrapper for [[charsArray()]].
*
* @return array
*/
public function getAsciiCharMap(): array
{
return $this->charsArray();
}
// Protected Methods
// =========================================================================
/**
* Returns the replacements for the toAscii() method, including any custom mappings provided by the
* [[\craft\config\GeneralConfig::customAsciiCharMappings|customAsciiCharMappings]] config setting.
*
* @return array
*/
protected function charsArray()
{
static $charsArray;
return $charsArray ?? $charsArray = array_merge(
parent::charsArray(),
Craft::$app->getConfig()->getGeneral()->customAsciiCharMappings
);
}
}