Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92702696
PhabricatorPhortuneConfigOptions.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, 22:44
Size
942 B
Mime Type
text/x-php
Expires
Sun, Nov 24, 22:44 (2 d)
Engine
blob
Format
Raw Data
Handle
22490905
Attached To
rPH Phabricator
PhabricatorPhortuneConfigOptions.php
View Options
<?php
final
class
PhabricatorPhortuneConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
"Phortune"
);
}
public
function
getDescription
()
{
return
pht
(
"Configure payments and billing."
);
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'phortune.stripe.publishable-key'
,
'string'
,
null
)
->
setLocked
(
true
)
->
setDescription
(
pht
(
'Stripe publishable key.'
)),
$this
->
newOption
(
'phortune.stripe.secret-key'
,
'string'
,
null
)
->
setHidden
(
true
)
->
setDescription
(
pht
(
'Stripe secret key.'
)),
$this
->
newOption
(
'phortune.balanced.marketplace-uri'
,
'string'
,
null
)
->
setLocked
(
true
)
->
setDescription
(
pht
(
'Balanced Marketplace URI.'
)),
$this
->
newOption
(
'phortune.balanced.secret-key'
,
'string'
,
null
)
->
setHidden
(
true
)
->
setDescription
(
pht
(
'Balanced secret key.'
)),
);
}
}
Event Timeline
Log In to Comment