Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102424829
DiffusionRepositoryEditStorageController.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, Feb 20, 14:28
Size
2 KB
Mime Type
text/x-php
Expires
Sat, Feb 22, 14:28 (2 d)
Engine
blob
Format
Raw Data
Handle
24354472
Attached To
rPH Phabricator
DiffusionRepositoryEditStorageController.php
View Options
<?php
final
class
DiffusionRepositoryEditStorageController
extends
DiffusionRepositoryEditController
{
protected
function
processDiffusionRequest
(
AphrontRequest
$request
)
{
$user
=
$request
->
getUser
();
$drequest
=
$this
->
diffusionRequest
;
$repository
=
$drequest
->
getRepository
();
$repository
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
$user
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
withIDs
(
array
(
$repository
->
getID
()))
->
executeOne
();
if
(!
$repository
)
{
return
new
Aphront404Response
();
}
$edit_uri
=
$this
->
getRepositoryControllerURI
(
$repository
,
'edit/'
);
$v_local
=
$repository
->
getHumanReadableDetail
(
'local-path'
);
$errors
=
array
();
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Edit Storage'
));
$title
=
pht
(
'Edit %s'
,
$repository
->
getName
());
$service_phid
=
$repository
->
getAlmanacServicePHID
();
if
(
$service_phid
)
{
$handles
=
$this
->
loadViewerHandles
(
array
(
$service_phid
));
$v_service
=
$handles
[
$service_phid
]->
renderLink
();
}
else
{
$v_service
=
phutil_tag
(
'em'
,
array
(),
pht
(
'Local'
));
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$user
)
->
appendChild
(
id
(
new
AphrontFormMarkupControl
())
->
setLabel
(
pht
(
'Storage Service'
))
->
setValue
(
$v_service
))
->
appendChild
(
id
(
new
AphrontFormMarkupControl
())
->
setName
(
'local'
)
->
setLabel
(
pht
(
'Storage Path'
))
->
setValue
(
$v_local
))
->
appendRemarkupInstructions
(
pht
(
"You can not adjust the local path for this repository from the "
.
"web interface. To edit it, run this command:
\n\n
%s"
,
sprintf
(
'phabricator/ $ ./bin/repository edit %s --as %s --local-path ...'
,
$repository
->
getMonogram
(),
$user
->
getUsername
())))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
addCancelButton
(
$edit_uri
,
pht
(
'Done'
)));
$object_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
$title
)
->
setForm
(
$form
)
->
setFormErrors
(
$errors
);
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$object_box
,
),
array
(
'title'
=>
$title
,
));
}
}
Event Timeline
Log In to Comment