Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104497659
PonderVotableView.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
Sun, Mar 9, 22:49
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Mar 11, 22:49 (2 d)
Engine
blob
Format
Raw Data
Handle
24764182
Attached To
rPH Phabricator
PonderVotableView.php
View Options
<?php
final
class
PonderVotableView
extends
AphrontView
{
private
$phid
;
private
$uri
;
private
$count
;
private
$vote
;
public
function
setPHID
(
$phid
)
{
$this
->
phid
=
$phid
;
return
$this
;
}
public
function
setURI
(
$uri
)
{
$this
->
uri
=
$uri
;
return
$this
;
}
public
function
setCount
(
$count
)
{
$this
->
count
=
$count
;
return
$this
;
}
public
function
setVote
(
$vote
)
{
$this
->
vote
=
$vote
;
return
$this
;
}
public
function
render
()
{
require_celerity_resource
(
'ponder-vote-css'
);
require_celerity_resource
(
'javelin-behavior-ponder-votebox'
);
Javelin
::
initBehavior
(
'ponder-votebox'
,
array
());
$uri
=
id
(
new
PhutilURI
(
$this
->
uri
))->
alter
(
'phid'
,
$this
->
phid
);
$up
=
javelin_tag
(
'a'
,
array
(
'href'
=>
(
string
)
$uri
,
'sigil'
=>
'upvote'
,
'mustcapture'
=>
true
,
'class'
=>
(
$this
->
vote
>
0
)
?
'ponder-vote-active'
:
null
,
),
"
\x
E2
\x
96
\x
B2"
);
$down
=
javelin_tag
(
'a'
,
array
(
'href'
=>
(
string
)
$uri
,
'sigil'
=>
'downvote'
,
'mustcapture'
=>
true
,
'class'
=>
(
$this
->
vote
<
0
)
?
'ponder-vote-active'
:
null
,
),
"
\x
E2
\x
96
\x
BC"
);
$count
=
javelin_tag
(
'div'
,
array
(
'class'
=>
'ponder-vote-count'
,
'sigil'
=>
'ponder-vote-count'
,
),
$this
->
count
);
return
javelin_tag
(
'div'
,
array
(
'class'
=>
'ponder-votable'
,
'sigil'
=>
'ponder-votable'
,
'meta'
=>
array
(
'count'
=>
(
int
)
$this
->
count
,
'vote'
=>
(
int
)
$this
->
vote
,
),
),
array
(
javelin_tag
(
'div'
,
array
(
'class'
=>
'ponder-votebox'
,
),
array
(
$up
,
$count
,
$down
)),
phutil_tag
(
'div'
,
array
(
'class'
=>
'ponder-votebox-content'
,
),
$this
->
renderChildren
()),
));
}
}
Event Timeline
Log In to Comment