repo.or.cz
/
phabricator
/
blender.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add a basic "harbormaster.step.edit" API method
[phabricator/blender.git]
/
src
/
view
/
form
/
control
/
AphrontFormStaticControl.php
blob
47060ea29268be7ac61f0868c8c2ed1115940a85
1
<
?php
2
3
final class
AphrontFormStaticControl
extends
AphrontFormControl
{
4
5
protected function
getCustomControlClass
() {
6
return
'aphront-form-control-static'
;
7
}
8
9
protected function
renderInput
() {
10
return
$this
->
getValue
();
11
}
12
13
}