Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116794840
ReleephBranchNamePreviewController.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, Jun 9, 07:19
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jun 11, 07:19 (2 d)
Engine
blob
Format
Raw Data
Handle
26645054
Attached To
rPH Phabricator
ReleephBranchNamePreviewController.php
View Options
<?php
final
class
ReleephBranchNamePreviewController
extends
PhabricatorController
{
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$is_symbolic
=
$request
->
getBool
(
'isSymbolic'
);
$template
=
$request
->
getStr
(
'template'
);
if
(!
$is_symbolic
&&
!
$template
)
{
$template
=
ReleephBranchTemplate
::
getDefaultTemplate
();
}
$arc_project_id
=
$request
->
getInt
(
'arcProjectID'
);
$fake_commit_handle
=
ReleephBranchTemplate
::
getFakeCommitHandleFor
(
$arc_project_id
);
list
(
$name
,
$errors
)
=
id
(
new
ReleephBranchTemplate
())
->
setCommitHandle
(
$fake_commit_handle
)
->
setReleephProjectName
(
$request
->
getStr
(
'projectName'
))
->
setSymbolic
(
$is_symbolic
)
->
interpolate
(
$template
);
$markup
=
''
;
if
(
$name
)
{
$markup
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'name'
),
$name
);
}
if
(
$errors
)
{
$markup
.=
phutil_tag
(
'div'
,
array
(
'class'
=>
'error'
),
head
(
$errors
));
}
return
id
(
new
AphrontAjaxResponse
())
->
setContent
(
array
(
'markup'
=>
$markup
));
}
}
Event Timeline
Log In to Comment