Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F538012
DiffusionCommitBranchesController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
DiffusionCommitBranchesController.php
View Options
<?php
final
class
DiffusionCommitBranchesController
extends
DiffusionController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$response
=
$this
->
loadDiffusionContext
();
if
(
$response
)
{
return
$response
;
}
$drequest
=
$this
->
getDiffusionRequest
();
$repository
=
$drequest
->
getRepository
();
$branch_limit
=
10
;
$branches
=
DiffusionRepositoryRef
::
loadAllFromDictionaries
(
$this
->
callConduitWithDiffusionRequest
(
'diffusion.branchquery'
,
array
(
'contains'
=>
$drequest
->
getCommit
(),
'limit'
=>
$branch_limit
+
1
,
'branch'
=>
null
,
)));
$has_more_branches
=
(
count
(
$branches
)
>
$branch_limit
);
$branches
=
array_slice
(
$branches
,
0
,
$branch_limit
);
$branch_links
=
array
();
foreach
(
$branches
as
$branch
)
{
$branch_links
[]
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$drequest
->
generateURI
(
array
(
'action'
=>
'browse'
,
'branch'
=>
$branch
->
getShortName
(),
)),
),
$branch
->
getShortName
());
}
if
(
$has_more_branches
)
{
$branch_links
[]
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$drequest
->
generateURI
(
array
(
'action'
=>
'branches'
,
)),
),
pht
(
"More Branches
\x
E2
\x
80
\x
A6"
));
}
return
id
(
new
AphrontAjaxResponse
())
->
setContent
(
$branch_links
?
implode
(
', '
,
$branch_links
)
:
pht
(
'None'
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 8:28 AM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
96764
Default Alt Text
DiffusionCommitBranchesController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment