mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
36e2d02d6e
Summary: `pht`ize a whole bunch of strings in rP. Test Plan: Intense eyeballing. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: hach-que, Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12797
57 lines
1.6 KiB
PHP
57 lines
1.6 KiB
PHP
<?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('/');
|
|
}
|
|
}
|