1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-07 04:18:31 +01:00
phorge-phorge/src/view/form/control/AphrontFormMarkupControl.php

14 lines
242 B
PHP
Raw Normal View History

2011-01-24 11:36:53 -08:00
<?php
final class AphrontFormMarkupControl extends AphrontFormControl {
2011-01-24 11:36:53 -08:00
protected function getCustomControlClass() {
return 'aphront-form-control-markup';
}
protected function renderInput() {
return $this->getValue();
}
}