Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116132545
PhabricatorEditEngineController.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
Thu, Jun 5, 02:35
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jun 7, 02:35 (19 m, 22 s)
Engine
blob
Format
Raw Data
Handle
26564180
Attached To
rPH Phabricator
PhabricatorEditEngineController.php
View Options
<?php
abstract
class
PhabricatorEditEngineController
extends
PhabricatorApplicationTransactionController
{
private
$engineKey
;
public
function
setEngineKey
(
$engine_key
)
{
$this
->
engineKey
=
$engine_key
;
return
$this
;
}
public
function
getEngineKey
()
{
return
$this
->
engineKey
;
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Edit Engines'
),
'/transactions/editengine/'
);
$engine_key
=
$this
->
getEngineKey
();
if
(
$engine_key
!==
null
)
{
$engine
=
PhabricatorEditEngine
::
getByKey
(
$this
->
getViewer
(),
$engine_key
);
if
(
$engine
)
{
$crumbs
->
addTextCrumb
(
$engine
->
getEngineName
(),
"/transactions/editengine/{$engine_key}/"
);
}
}
return
$crumbs
;
}
protected
function
loadConfigForEdit
()
{
return
$this
->
loadConfig
(
$need_edit
=
true
);
}
protected
function
loadConfigForView
()
{
return
$this
->
loadConfig
(
$need_edit
=
false
);
}
private
function
loadConfig
(
$need_edit
)
{
$request
=
$this
->
getRequest
();
$viewer
=
$this
->
getViewer
();
$engine_key
=
$request
->
getURIData
(
'engineKey'
);
$this
->
setEngineKey
(
$engine_key
);
$key
=
$request
->
getURIData
(
'key'
);
if
(
$need_edit
)
{
$capabilities
=
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
);
}
else
{
$capabilities
=
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
);
}
$config
=
id
(
new
PhabricatorEditEngineConfigurationQuery
())
->
setViewer
(
$viewer
)
->
withEngineKeys
(
array
(
$engine_key
))
->
withIdentifiers
(
array
(
$key
))
->
requireCapabilities
(
$capabilities
)
->
executeOne
();
if
(
$config
)
{
$engine
=
$config
->
getEngine
();
}
else
{
return
null
;
}
if
(!
$engine
->
isEngineConfigurable
())
{
return
null
;
}
return
$config
;
}
}
Event Timeline
Log In to Comment