mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-24 13:38:19 +01:00
6bb7a282b1
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
243 B
PHP
13 lines
243 B
PHP
<?php
|
|
|
|
final class AphrontFormDividerControl extends AphrontFormControl {
|
|
|
|
protected function getCustomControlClass() {
|
|
return 'aphront-form-control-divider';
|
|
}
|
|
|
|
protected function renderInput() {
|
|
return phutil_tag('hr');
|
|
}
|
|
|
|
}
|