Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102383731
PhabricatorAuthInviteDialogException.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 20, 03:32
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Feb 22, 03:32 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24342825
Attached To
rPH Phabricator
PhabricatorAuthInviteDialogException.php
View Options
<?php
abstract
class
PhabricatorAuthInviteDialogException
extends
PhabricatorAuthInviteException
{
private
$title
;
private
$body
;
private
$submitButtonText
;
private
$submitButtonURI
;
private
$cancelButtonText
;
private
$cancelButtonURI
;
public
function
__construct
(
$title
,
$body
)
{
$this
->
title
=
$title
;
$this
->
body
=
$body
;
parent
::
__construct
(
pht
(
'%s: %s'
,
$title
,
$body
));
}
public
function
getTitle
()
{
return
$this
->
title
;
}
public
function
getBody
()
{
return
$this
->
body
;
}
public
function
setSubmitButtonText
(
$submit_button_text
)
{
$this
->
submitButtonText
=
$submit_button_text
;
return
$this
;
}
public
function
getSubmitButtonText
()
{
return
$this
->
submitButtonText
;
}
public
function
setSubmitButtonURI
(
$submit_button_uri
)
{
$this
->
submitButtonURI
=
$submit_button_uri
;
return
$this
;
}
public
function
getSubmitButtonURI
()
{
return
$this
->
submitButtonURI
;
}
public
function
setCancelButtonText
(
$cancel_button_text
)
{
$this
->
cancelButtonText
=
$cancel_button_text
;
return
$this
;
}
public
function
getCancelButtonText
()
{
return
$this
->
cancelButtonText
;
}
public
function
setCancelButtonURI
(
$cancel_button_uri
)
{
$this
->
cancelButtonURI
=
$cancel_button_uri
;
return
$this
;
}
public
function
getCancelButtonURI
()
{
return
$this
->
cancelButtonURI
;
}
}
Event Timeline
Log In to Comment