Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101361615
PhluxViewController.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
Sat, Feb 8, 20:06
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Feb 10, 20:06 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24144791
Attached To
rPH Phabricator
PhluxViewController.php
View Options
<?php
final
class
PhluxViewController
extends
PhluxController
{
private
$key
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
key
=
$data
[
'key'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$var
=
id
(
new
PhluxVariableQuery
())
->
setViewer
(
$user
)
->
withKeys
(
array
(
$this
->
key
))
->
executeOne
();
if
(!
$var
)
{
return
new
Aphront404Response
();
}
$crumbs
=
$this
->
buildApplicationCrumbs
();
$title
=
$var
->
getVariableKey
();
$crumbs
->
addTextCrumb
(
$title
,
$request
->
getRequestURI
());
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$title
)
->
setUser
(
$user
)
->
setPolicyObject
(
$var
);
$actions
=
id
(
new
PhabricatorActionListView
())
->
setUser
(
$user
)
->
setObjectURI
(
$request
->
getRequestURI
())
->
setObject
(
$var
);
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$user
,
$var
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setIcon
(
'fa-pencil'
)
->
setName
(
pht
(
'Edit Variable'
))
->
setHref
(
$this
->
getApplicationURI
(
'/edit/'
.
$var
->
getVariableKey
().
'/'
))
->
setDisabled
(!
$can_edit
)
->
setWorkflow
(!
$can_edit
));
$display_value
=
json_encode
(
$var
->
getVariableValue
());
$properties
=
id
(
new
PHUIPropertyListView
())
->
setUser
(
$user
)
->
setObject
(
$var
)
->
setActionList
(
$actions
)
->
addProperty
(
pht
(
'Value'
),
$display_value
);
$xactions
=
id
(
new
PhluxTransactionQuery
())
->
setViewer
(
$user
)
->
withObjectPHIDs
(
array
(
$var
->
getPHID
()))
->
execute
();
$engine
=
id
(
new
PhabricatorMarkupEngine
())
->
setViewer
(
$user
);
$xaction_view
=
id
(
new
PhabricatorApplicationTransactionView
())
->
setUser
(
$user
)
->
setObjectPHID
(
$var
->
getPHID
())
->
setTransactions
(
$xactions
)
->
setMarkupEngine
(
$engine
);
$object_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
addPropertyList
(
$properties
);
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$object_box
,
$xaction_view
,
),
array
(
'title'
=>
$title
,
));
}
}
Event Timeline
Log In to Comment