1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-10 14:51:06 +01:00
phorge-phorge/src/view/form/control/AphrontFormMarkupControl.php

14 lines
242 B
PHP
Raw Normal View History

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