Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104552611
PhabricatorPeopleProfileEditController.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, Mar 10, 10:00
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Mar 12, 10:00 (2 d)
Engine
blob
Format
Raw Data
Handle
24814159
Attached To
rPH Phabricator
PhabricatorPeopleProfileEditController.php
View Options
<?php
final
class
PhabricatorPeopleProfileEditController
extends
PhabricatorPeopleProfileController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$user
=
id
(
new
PhabricatorPeopleQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
needProfileImage
(
true
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$user
)
{
return
new
Aphront404Response
();
}
$this
->
setUser
(
$user
);
$done_uri
=
$this
->
getApplicationURI
(
"manage/{$id}/"
);
$field_list
=
PhabricatorCustomField
::
getObjectFields
(
$user
,
PhabricatorCustomField
::
ROLE_EDIT
);
$field_list
->
setViewer
(
$viewer
)
->
readFieldsFromStorage
(
$user
);
$validation_exception
=
null
;
if
(
$request
->
isFormPost
())
{
$xactions
=
$field_list
->
buildFieldTransactionsFromRequest
(
new
PhabricatorUserTransaction
(),
$request
);
$editor
=
id
(
new
PhabricatorUserProfileEditor
())
->
setActor
(
$viewer
)
->
setContentSource
(
PhabricatorContentSource
::
newFromRequest
(
$request
))
->
setContinueOnNoEffect
(
true
);
try
{
$editor
->
applyTransactions
(
$user
,
$xactions
);
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$done_uri
);
}
catch
(
PhabricatorApplicationTransactionValidationException
$ex
)
{
$validation_exception
=
$ex
;
}
}
$title
=
pht
(
'Edit Profile'
);
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$viewer
);
$field_list
->
appendFieldsToForm
(
$form
);
$form
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
addCancelButton
(
$done_uri
)
->
setValue
(
pht
(
'Save Profile'
)));
$allow_public
=
PhabricatorEnv
::
getEnvConfig
(
'policy.allow-public'
);
$note
=
null
;
if
(
$allow_public
)
{
$note
=
id
(
new
PHUIInfoView
())
->
setSeverity
(
PHUIInfoView
::
SEVERITY_WARNING
)
->
appendChild
(
pht
(
'Information on user profiles on this install is publicly '
.
'visible.'
));
}
$form_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Profile'
))
->
setValidationException
(
$validation_exception
)
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
setForm
(
$form
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Edit Profile'
));
$crumbs
->
setBorder
(
true
);
$nav
=
$this
->
getProfileMenu
();
$nav
->
selectFilter
(
PhabricatorPeopleProfileMenuEngine
::
ITEM_MANAGE
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Edit Profile: %s'
,
$user
->
getFullName
()))
->
setHeaderIcon
(
'fa-pencil'
);
$view
=
id
(
new
PHUITwoColumnView
())
->
setHeader
(
$header
)
->
setFooter
(
array
(
$note
,
$form_box
,
));
return
$this
->
newPage
()
->
setTitle
(
$title
)
->
setCrumbs
(
$crumbs
)
->
setNavigation
(
$nav
)
->
appendChild
(
$view
);
}
}
Event Timeline
Log In to Comment