Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101393331
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
Mon, Feb 10, 00:40
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Feb 12, 00:40 (2 d)
Engine
blob
Format
Raw Data
Handle
24150915
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
();
}
if
(!
$engine
->
isEngineConfigurable
())
{
return
null
;
}
return
$config
;
}
}
Event Timeline
Log In to Comment