mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-25 13:09:08 +01:00
Summary: Everything here now should properly handle plain strings and safe HTML. Test Plan: /settings/panel/display/ Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2432 Differential Revision: https://secure.phabricator.com/D4826
13 lines
242 B
PHP
13 lines
242 B
PHP
<?php
|
|
|
|
final class AphrontFormStaticControl extends AphrontFormControl {
|
|
|
|
protected function getCustomControlClass() {
|
|
return 'aphront-form-control-static';
|
|
}
|
|
|
|
protected function renderInput() {
|
|
return $this->getValue();
|
|
}
|
|
|
|
}
|