Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101632821
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
Wed, Feb 12, 06:58
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Feb 14, 06:58 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24204854
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_render_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_render_tag
(
'div'
,
array
(
'class'
=>
'ponder-votebox-content'
,
),
$this
->
renderChildren
()),
));
}
}
Event Timeline
Log In to Comment