1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-04 02:48:25 +01:00
phorge-phorge/src/view/form/control/AphrontFormSectionControl.php
epriestley cc8827a8c1 Improve accessibility of some UI elements (forms, icons, timeline)
Summary: Ref T4843. Chips away at a few more things.

Test Plan: Used VoiceOver and got a generally more sensible-seeming result.

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T4843

Differential Revision: https://secure.phabricator.com/D8978
2014-05-05 08:16:35 -07:00

13 lines
244 B
PHP

<?php
final class AphrontFormSectionControl extends AphrontFormControl {
protected function getCustomControlClass() {
return 'aphront-form-control-section';
}
protected function renderInput() {
return $this->getValue();
}
}