Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2895643
DiffusionRepositoryEditUpdateController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
DiffusionRepositoryEditUpdateController.php
View Options
<?php
final
class
DiffusionRepositoryEditUpdateController
extends
DiffusionRepositoryManageController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$response
=
$this
->
loadDiffusionContextForEdit
(
)
;
if
(
$response
)
{
return
$response
;
}
$viewer
=
$this
->
getViewer
(
)
;
$drequest
=
$this
->
getDiffusionRequest
(
)
;
$repository
=
$drequest
->
getRepository
(
)
;
$panel_uri
=
id
(
new
DiffusionRepositoryBasicsManagementPanel
(
)
)
->
setRepository
(
$repository
)
->
getPanelURI
(
)
;
if
(
$request
->
isFormPost
(
)
)
{
$params
=
array
(
'repositories'
=>
array
(
$repository
->
getPHID
(
)
,
)
,
)
;
id
(
new
ConduitCall
(
'diffusion.looksoon'
,
$params
)
)
->
setUser
(
$viewer
)
->
execute
(
)
;
return
id
(
new
AphrontRedirectResponse
(
)
)
->
setURI
(
$panel_uri
)
;
}
$doc_name
=
'Diffusion User Guide: Repository Updates'
;
$doc_href
=
PhabricatorEnv
::
getDoclink
(
$doc_name
)
;
$doc_link
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$doc_href
,
'target'
=>
'_blank'
,
)
,
$doc_name
)
;
return
$this
->
newDialog
(
)
->
setTitle
(
pht
(
'Update Repository Now'
)
)
->
appendParagraph
(
pht
(
'Normally, repositories are automatically updated '
.
'based on how much time has elapsed since the last commit. '
.
'This helps reduce load if you have a large number of mostly '
.
'inactive repositories, which is common.'
)
)
->
appendParagraph
(
pht
(
'You can manually schedule an update for this repository. The '
.
'daemons will perform the update as soon as possible. This may '
.
'be helpful if you have just made a commit to a rarely used '
.
'repository.'
)
)
->
appendParagraph
(
pht
(
'To learn more about how repositories are updated, '
.
'read %s in the documentation.'
,
$doc_link
)
)
->
addCancelButton
(
$panel_uri
)
->
addSubmitButton
(
pht
(
'Schedule Update'
)
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 21:47 (6 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1129095
Default Alt Text
DiffusionRepositoryEditUpdateController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment