Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4115145
AlphabetsProvider.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
876 B
Referenced Files
None
Subscribers
None
AlphabetsProvider.php
View Options
<?php
namespace
Cite
;
use
MediaWiki\Extension\CLDR\Alphabets
;
/**
* Wrapper for the CLDR Alphabets class
*
* @license GPL-2.0-or-later
*/
class
AlphabetsProvider
{
private
?
Alphabets
$alphabet
=
null
;
public
function
__construct
()
{
if
(
class_exists
(
Alphabets
::
class
)
)
{
$this
->
alphabet
=
new
Alphabets
();
}
}
/**
* Get alphabet for a locale or its fallbacks
*
* The index or main alphabet, found in CLDR main `characters.exemplarCharacters`,
* and reduced to a simple form for creating a sequence. Returns null when CLDR is not installed
*
* @param string $code Locale to query. If no entry exists, the fallback
* locales are iterated.
* @return string[]|null a sequence of symbols
*/
public
function
getIndexCharacters
(
string
$code
):
?
array
{
return
$this
->
alphabet
?
$this
->
alphabet
->
getIndexCharacters
(
$code
)
:
null
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 00:42 (5 d, 10 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
f0/55/8bdedb7068c930b522c6b6b1189a
Default Alt Text
AlphabetsProvider.php (876 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment