mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-04 02:48:25 +01:00
cc8827a8c1
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
13 lines
244 B
PHP
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();
|
|
}
|
|
|
|
}
|