Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100986340
DifferentialInlineCommentEditView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Feb 4, 13:33
Size
3 KB
Mime Type
text/x-php
Expires
Thu, Feb 6, 13:33 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24067890
Attached To
rPH Phabricator
DifferentialInlineCommentEditView.php
View Options
<?php
final
class
DifferentialInlineCommentEditView
extends
AphrontView
{
private
$inputs
=
array
();
private
$uri
;
private
$title
;
private
$onRight
;
private
$number
;
private
$length
;
public
function
addHiddenInput
(
$key
,
$value
)
{
$this
->
inputs
[]
=
array
(
$key
,
$value
);
return
$this
;
}
public
function
setSubmitURI
(
$uri
)
{
$this
->
uri
=
$uri
;
return
$this
;
}
public
function
setTitle
(
$title
)
{
$this
->
title
=
$title
;
return
$this
;
}
public
function
setOnRight
(
$on_right
)
{
$this
->
onRight
=
$on_right
;
$this
->
addHiddenInput
(
'on_right'
,
$on_right
);
return
$this
;
}
public
function
setNumber
(
$number
)
{
$this
->
number
=
$number
;
return
$this
;
}
public
function
setLength
(
$length
)
{
$this
->
length
=
$length
;
return
$this
;
}
public
function
render
()
{
if
(!
$this
->
uri
)
{
throw
new
Exception
(
"Call setSubmitURI() before render()!"
);
}
if
(!
$this
->
user
)
{
throw
new
Exception
(
"Call setUser() before render()!"
);
}
$content
=
phabricator_form
(
$this
->
user
,
array
(
'action'
=>
$this
->
uri
,
'method'
=>
'POST'
,
'sigil'
=>
'inline-edit-form'
,
),
$this
->
renderHTMLView
(
array
(
$this
->
renderInputs
(),
$this
->
renderBody
(),
)));
return
hsprintf
(
'<table>'
.
'<tr class="inline-comment-splint">'
.
'<th></th>'
.
'<td class="left">%s</td>'
.
'<th></th>'
.
'<td colspan="3" class="right3">%s</td>'
.
'</tr>'
.
'</table>'
,
$this
->
onRight
?
null
:
$content
,
$this
->
onRight
?
$content
:
null
);
}
private
function
renderInputs
()
{
$out
=
array
();
foreach
(
$this
->
inputs
as
$input
)
{
list
(
$name
,
$value
)
=
$input
;
$out
[]
=
phutil_tag
(
'input'
,
array
(
'type'
=>
'hidden'
,
'name'
=>
$name
,
'value'
=>
$value
,
));
}
return
$out
;
}
private
function
renderBody
()
{
$buttons
=
array
();
$buttons
[]
=
phutil_tag
(
'button'
,
array
(),
'Ready'
);
$buttons
[]
=
javelin_tag
(
'button'
,
array
(
'sigil'
=>
'inline-edit-cancel'
,
'class'
=>
'grey'
,
),
pht
(
'Cancel'
));
$formatting
=
phutil_tag
(
'a'
,
array
(
'href'
=>
PhabricatorEnv
::
getDoclink
(
'article/Remarkup_Reference.html'
),
'tabindex'
=>
'-1'
,
'target'
=>
'_blank'
,
),
pht
(
'Formatting Reference'
));
$title
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'differential-inline-comment-edit-title'
,
),
$this
->
title
);
$body
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'differential-inline-comment-edit-body'
,
),
$this
->
renderHTMLChildren
());
$edit
=
phutil_tag
(
'edit'
,
array
(
'class'
=>
'differential-inline-comment-edit-buttons'
,
),
$this
->
renderHTMLView
(
array
(
$formatting
,
$buttons
,
phutil_tag
(
'div'
,
array
(
'style'
=>
'clear: both'
),
''
),
)));
return
javelin_tag
(
'div'
,
array
(
'class'
=>
'differential-inline-comment-edit'
,
'sigil'
=>
'differential-inline-comment'
,
'meta'
=>
array
(
'on_right'
=>
$this
->
onRight
,
'number'
=>
$this
->
number
,
'length'
=>
$this
->
length
,
),
),
$this
->
renderHTMLView
(
array
(
$title
,
$body
,
$edit
,
)));
}
}
Event Timeline
Log In to Comment