Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F449372
AlmanacBindingTableView.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
AlmanacBindingTableView.php
View Options
<?php
final
class
AlmanacBindingTableView
extends
AphrontView
{
private
$bindings
;
private
$noDataString
;
public
function
setNoDataString
(
$no_data_string
)
{
$this
->
noDataString
=
$no_data_string
;
return
$this
;
}
public
function
getNoDataString
()
{
return
$this
->
noDataString
;
}
public
function
setBindings
(
array
$bindings
)
{
$this
->
bindings
=
$bindings
;
return
$this
;
}
public
function
getBindings
()
{
return
$this
->
bindings
;
}
public
function
render
()
{
$bindings
=
$this
->
getBindings
();
$viewer
=
$this
->
getUser
();
$phids
=
array
();
foreach
(
$bindings
as
$binding
)
{
$phids
[]
=
$binding
->
getServicePHID
();
$phids
[]
=
$binding
->
getDevicePHID
();
$phids
[]
=
$binding
->
getInterface
()->
getNetworkPHID
();
}
$handles
=
$viewer
->
loadHandles
(
$phids
);
$rows
=
array
();
foreach
(
$bindings
as
$binding
)
{
$addr
=
$binding
->
getInterface
()->
getAddress
();
$port
=
$binding
->
getInterface
()->
getPort
();
$rows
[]
=
array
(
$binding
->
getID
(),
$handles
->
renderHandle
(
$binding
->
getServicePHID
()),
$handles
->
renderHandle
(
$binding
->
getDevicePHID
()),
$handles
->
renderHandle
(
$binding
->
getInterface
()->
getNetworkPHID
()),
$binding
->
getInterface
()->
renderDisplayAddress
(),
phutil_tag
(
'a'
,
array
(
'class'
=>
'small grey button'
,
'href'
=>
'/almanac/binding/'
.
$binding
->
getID
().
'/'
,
),
pht
(
'Details'
)),
);
}
$table
=
id
(
new
AphrontTableView
(
$rows
))
->
setNoDataString
(
$this
->
getNoDataString
())
->
setHeaders
(
array
(
pht
(
'ID'
),
pht
(
'Service'
),
pht
(
'Device'
),
pht
(
'Network'
),
pht
(
'Interface'
),
null
,
))
->
setColumnClasses
(
array
(
''
,
''
,
''
,
''
,
'wide'
,
'action'
,
));
return
$table
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 7:20 PM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
67373
Default Alt Text
AlmanacBindingTableView.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment