mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-04 02:48:25 +01:00
14 lines
244 B
PHP
14 lines
244 B
PHP
|
<?php
|
||
|
|
||
|
final class AphrontFormSectionControl extends AphrontFormControl {
|
||
|
|
||
|
protected function getCustomControlClass() {
|
||
|
return 'aphront-form-control-section';
|
||
|
}
|
||
|
|
||
|
protected function renderInput() {
|
||
|
return $this->getValue();
|
||
|
}
|
||
|
|
||
|
}
|