Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92698469
LegalpadDocumentDoneController.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
Fri, Nov 22, 21:39
Size
551 B
Mime Type
text/x-php
Expires
Sun, Nov 24, 21:39 (2 d)
Engine
blob
Format
Raw Data
Handle
22489748
Attached To
rPH Phabricator
LegalpadDocumentDoneController.php
View Options
<?php
final
class
LegalpadDocumentDoneController
extends
LegalpadController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'Verify Signature'
))
->
appendParagraph
(
pht
(
'Thank you for signing this document. Please check your email '
.
'to verify your signature and complete the process.'
))
->
addCancelButton
(
'/'
,
pht
(
'Okay'
));
}
}
Event Timeline
Log In to Comment