Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101128221
PhabricatorProjectEditController.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 6, 00:55
Size
2 KB
Mime Type
text/x-php
Expires
Sat, Feb 8, 00:55 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24086078
Attached To
rPH Phabricator
PhabricatorProjectEditController.php
View Options
<?php
final
class
PhabricatorProjectEditController
extends
PhabricatorProjectController
{
private
$engine
;
public
function
setEngine
(
PhabricatorProjectEditEngine
$engine
)
{
$this
->
engine
=
$engine
;
return
$this
;
}
public
function
getEngine
()
{
return
$this
->
engine
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$engine
=
id
(
new
PhabricatorProjectEditEngine
())
->
setController
(
$this
);
$this
->
setEngine
(
$engine
);
$id
=
$request
->
getURIData
(
'id'
);
if
(!
$id
)
{
$parent_id
=
head
(
$request
->
getArr
(
'parent'
));
if
(!
$parent_id
)
{
$parent_id
=
$request
->
getStr
(
'parent'
);
}
if
(
$parent_id
)
{
$is_milestone
=
false
;
}
else
{
$parent_id
=
head
(
$request
->
getArr
(
'milestone'
));
if
(!
$parent_id
)
{
$parent_id
=
$request
->
getStr
(
'milestone'
);
}
$is_milestone
=
true
;
}
if
(
$parent_id
)
{
$query
=
id
(
new
PhabricatorProjectQuery
())
->
setViewer
(
$viewer
)
->
needImages
(
true
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
));
if
(
ctype_digit
(
$parent_id
))
{
$query
->
withIDs
(
array
(
$parent_id
));
}
else
{
$query
->
withPHIDs
(
array
(
$parent_id
));
}
$parent
=
$query
->
executeOne
();
if
(
$is_milestone
)
{
if
(!
$parent
->
supportsMilestones
())
{
$cancel_uri
=
"/project/subprojects/{$parent_id}/"
;
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'No Milestones'
))
->
appendParagraph
(
pht
(
'You can not add milestones to this project.'
))
->
addCancelButton
(
$cancel_uri
);
}
$engine
->
setMilestoneProject
(
$parent
);
}
else
{
if
(!
$parent
->
supportsSubprojects
())
{
$cancel_uri
=
"/project/subprojects/{$parent_id}/"
;
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'No Subprojects'
))
->
appendParagraph
(
pht
(
'You can not add subprojects to this project.'
))
->
addCancelButton
(
$cancel_uri
);
}
$engine
->
setParentProject
(
$parent
);
}
$this
->
setProject
(
$parent
);
}
}
return
$engine
->
buildResponse
();
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$engine
=
$this
->
getEngine
();
if
(
$engine
)
{
$parent
=
$engine
->
getParentProject
();
$milestone
=
$engine
->
getMilestoneProject
();
if
(
$parent
||
$milestone
)
{
$id
=
nonempty
(
$parent
,
$milestone
)->
getID
();
$crumbs
->
addTextCrumb
(
pht
(
'Subprojects'
),
$this
->
getApplicationURI
(
"subprojects/{$id}/"
));
}
}
return
$crumbs
;
}
}
Event Timeline
Log In to Comment