Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F555098
PhortuneOrderTableView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
PhortuneOrderTableView.php
View Options
<?php
final
class
PhortuneOrderTableView
extends
AphrontView
{
private
$carts
;
private
$noDataString
;
private
$isInvoices
;
private
$isMerchantView
;
private
$accountEmail
;
public
function
setCarts
(
array
$carts
)
{
$this
->
carts
=
$carts
;
return
$this
;
}
public
function
getCarts
()
{
return
$this
->
carts
;
}
public
function
setIsInvoices
(
$is_invoices
)
{
$this
->
isInvoices
=
$is_invoices
;
return
$this
;
}
public
function
getIsInvoices
()
{
return
$this
->
isInvoices
;
}
public
function
setNoDataString
(
$no_data_string
)
{
$this
->
noDataString
=
$no_data_string
;
return
$this
;
}
public
function
getNoDataString
()
{
return
$this
->
noDataString
;
}
public
function
setIsMerchantView
(
$is_merchant_view
)
{
$this
->
isMerchantView
=
$is_merchant_view
;
return
$this
;
}
public
function
getIsMerchantView
()
{
return
$this
->
isMerchantView
;
}
public
function
setAccountEmail
(
PhortuneAccountEmail
$account_email
)
{
$this
->
accountEmail
=
$account_email
;
return
$this
;
}
public
function
getAccountEmail
()
{
return
$this
->
accountEmail
;
}
public
function
render
()
{
$carts
=
$this
->
getCarts
();
$viewer
=
$this
->
getUser
();
$is_invoices
=
$this
->
getIsInvoices
();
$is_merchant
=
$this
->
getIsMerchantView
();
$is_external
=
(
bool
)
$this
->
getAccountEmail
();
$email
=
$this
->
getAccountEmail
();
$phids
=
array
();
foreach
(
$carts
as
$cart
)
{
$phids
[]
=
$cart
->
getPHID
();
foreach
(
$cart
->
getPurchases
()
as
$purchase
)
{
$phids
[]
=
$purchase
->
getPHID
();
}
$phids
[]
=
$cart
->
getMerchantPHID
();
}
$handles
=
$viewer
->
loadHandles
(
$phids
);
$rows
=
array
();
$rowc
=
array
();
foreach
(
$carts
as
$cart
)
{
if
(
$is_external
)
{
$cart_link
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$email
->
getExternalOrderURI
(
$cart
),
),
$handles
[
$cart
->
getPHID
()]->
getName
());
}
else
{
$cart_link
=
$handles
[
$cart
->
getPHID
()]->
renderLink
();
}
$purchases
=
$cart
->
getPurchases
();
if
(
count
(
$purchases
)
==
1
)
{
$purchase
=
head
(
$purchases
);
$purchase_name
=
$handles
[
$purchase
->
getPHID
()]->
getName
();
$purchases
=
array
();
}
else
{
$purchase_name
=
''
;
}
if
(
$is_invoices
)
{
if
(
$is_external
)
{
$merchant_link
=
$handles
[
$cart
->
getMerchantPHID
()]->
getName
();
}
else
{
$merchant_link
=
$handles
[
$cart
->
getMerchantPHID
()]->
renderLink
();
}
}
else
{
$merchant_link
=
null
;
}
$rowc
[]
=
''
;
$rows
[]
=
array
(
$cart
->
getID
(),
$merchant_link
,
phutil_tag
(
'strong'
,
array
(),
$cart_link
),
$purchase_name
,
phutil_tag
(
'strong'
,
array
(),
$cart
->
getTotalPriceAsCurrency
()->
formatForDisplay
()),
PhortuneCart
::
getNameForStatus
(
$cart
->
getStatus
()),
phabricator_datetime
(
$cart
->
getDateModified
(),
$viewer
),
phabricator_datetime
(
$cart
->
getDateCreated
(),
$viewer
),
id
(
new
PHUIButtonView
())
->
setTag
(
'a'
)
->
setColor
(
'green'
)
->
setHref
(
$cart
->
getCheckoutURI
())
->
setText
(
pht
(
'Pay Now'
))
->
setIcon
(
'fa-credit-card'
),
);
foreach
(
$purchases
as
$purchase
)
{
$id
=
$purchase
->
getID
();
$price
=
$purchase
->
getTotalPriceAsCurrency
()->
formatForDisplay
();
$rowc
[]
=
''
;
$rows
[]
=
array
(
''
,
''
,
$handles
[
$purchase
->
getPHID
()]->
renderLink
(),
$price
,
''
,
''
,
''
,
''
,
);
}
}
$table
=
id
(
new
AphrontTableView
(
$rows
))
->
setNoDataString
(
$this
->
getNoDataString
())
->
setRowClasses
(
$rowc
)
->
setHeaders
(
array
(
pht
(
'ID'
),
pht
(
'Merchant'
),
$is_invoices
?
pht
(
'Invoice'
)
:
pht
(
'Order'
),
pht
(
'Purchase'
),
pht
(
'Amount'
),
pht
(
'Status'
),
pht
(
'Updated'
),
pht
(
'Invoice Date'
),
null
,
))
->
setColumnClasses
(
array
(
''
,
''
,
''
,
'wide'
,
'right'
,
''
,
'right'
,
'right'
,
'action'
,
))
->
setColumnVisibility
(
array
(
true
,
$is_invoices
,
true
,
true
,
true
,
!
$is_invoices
,
!
$is_invoices
,
$is_invoices
,
// We show "Pay Now" for due invoices, but not if the viewer is the
// merchant, since it doesn't make sense for them to pay.
(
$is_invoices
&&
!
$is_merchant
&&
!
$is_external
),
));
return
$table
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 6:23 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
121115
Default Alt Text
PhortuneOrderTableView.php (4 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment