Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2892540
PhabricatorSystemSelectEncodingController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorSystemSelectEncodingController.php
View Options
<?php
final
class
PhabricatorSystemSelectEncodingController
extends
PhabricatorController
{
public
function
shouldRequireLogin
(
)
{
return
false
;
}
public
function
processRequest
(
)
{
$request
=
$this
->
getRequest
(
)
;
if
(
!
function_exists
(
'mb_list_encodings'
)
)
{
return
$this
->
newDialog
(
)
->
setTitle
(
pht
(
'No Encoding Support'
)
)
->
appendParagraph
(
pht
(
'This system does not have the "%s" extension installed, '
.
'so character encodings are not supported. Install "%s" to '
.
'enable support.'
,
'mbstring'
,
'mbstring'
)
)
->
addCancelButton
(
'/'
)
;
}
if
(
$request
->
isFormPost
(
)
)
{
$result
=
array
(
'encoding'
=>
$request
->
getStr
(
'encoding'
)
)
;
return
id
(
new
AphrontAjaxResponse
(
)
)
->
setContent
(
$result
)
;
}
$encodings
=
mb_list_encodings
(
)
;
$encodings
=
array_fuse
(
$encodings
)
;
asort
(
$encodings
)
;
unset
(
$encodings
[
'pass'
]
)
;
unset
(
$encodings
[
'auto'
]
)
;
$encodings
=
array
(
''
=>
pht
(
'(Use Default)'
)
,
)
+
$encodings
;
$form
=
id
(
new
AphrontFormView
(
)
)
->
setUser
(
$this
->
getRequest
(
)
->
getUser
(
)
)
->
appendRemarkupInstructions
(
pht
(
'Choose a text encoding to use.'
)
)
->
appendChild
(
id
(
new
AphrontFormSelectControl
(
)
)
->
setLabel
(
pht
(
'Encoding'
)
)
->
setName
(
'encoding'
)
->
setValue
(
$request
->
getStr
(
'encoding'
)
)
->
setOptions
(
$encodings
)
)
;
return
$this
->
newDialog
(
)
->
setTitle
(
pht
(
'Select Character Encoding'
)
)
->
appendChild
(
$form
->
buildLayoutView
(
)
)
->
addSubmitButton
(
pht
(
'Choose Encoding'
)
)
->
addCancelButton
(
'/'
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 16:58 (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1126716
Default Alt Text
PhabricatorSystemSelectEncodingController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment