Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F554890
PhortuneSubscriptionTableView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhortuneSubscriptionTableView.php
View Options
<?php
final
class
PhortuneSubscriptionTableView
extends
AphrontView
{
private
$subscriptions
;
private
$isMerchantView
;
private
$notice
;
public
function
setSubscriptions
(
array
$subscriptions
)
{
$this
->
subscriptions
=
$subscriptions
;
return
$this
;
}
public
function
getSubscriptions
()
{
return
$this
->
subscriptions
;
}
public
function
setIsMerchantView
(
$is_merchant_view
)
{
$this
->
isMerchantView
=
$is_merchant_view
;
return
$this
;
}
public
function
getIsMerchantView
()
{
return
$this
->
isMerchantView
;
}
public
function
setNotice
(
$notice
)
{
$this
->
notice
=
$notice
;
return
$this
;
}
public
function
render
()
{
return
$this
->
newTableView
();
}
public
function
newTableView
()
{
$subscriptions
=
$this
->
getSubscriptions
();
$viewer
=
$this
->
getViewer
();
$phids
=
mpull
(
$subscriptions
,
'getPHID'
);
$handles
=
$viewer
->
loadHandles
(
$phids
);
$rows
=
array
();
$rowc
=
array
();
foreach
(
$subscriptions
as
$subscription
)
{
if
(
$this
->
getIsMerchantView
())
{
$uri
=
$subscription
->
getMerchantURI
();
}
else
{
$uri
=
$subscription
->
getURI
();
}
$subscription_link
=
$handles
[
$subscription
->
getPHID
()]->
renderLink
();
$rows
[]
=
array
(
$subscription
->
getID
(),
phutil_tag
(
'a'
,
array
(
'href'
=>
$uri
,
),
$subscription
->
getSubscriptionFullName
()),
phabricator_datetime
(
$subscription
->
getDateCreated
(),
$viewer
),
);
}
$table
=
id
(
new
AphrontTableView
(
$rows
))
->
setNotice
(
$this
->
notice
)
->
setHeaders
(
array
(
pht
(
'ID'
),
pht
(
'Name'
),
pht
(
'Created'
),
))
->
setColumnClasses
(
array
(
''
,
'wide'
,
'right'
,
));
return
$table
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 6:18 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
120259
Default Alt Text
PhortuneSubscriptionTableView.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment