Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96579737
FundInitiativeEditEngine.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
Sat, Dec 28, 11:40
Size
4 KB
Mime Type
text/x-php
Expires
Mon, Dec 30, 11:40 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23210819
Attached To
rPH Phabricator
FundInitiativeEditEngine.php
View Options
<?php
final
class
FundInitiativeEditEngine
extends
PhabricatorEditEngine
{
const
ENGINECONST
=
'fund.initiative'
;
public
function
getEngineName
()
{
return
pht
(
'Fund'
);
}
public
function
getEngineApplicationClass
()
{
return
'PhabricatorFundApplication'
;
}
public
function
getSummaryHeader
()
{
return
pht
(
'Configure Fund Forms'
);
}
public
function
getSummaryText
()
{
return
pht
(
'Configure creation and editing forms in Fund.'
);
}
public
function
isEngineConfigurable
()
{
return
false
;
}
protected
function
newEditableObject
()
{
return
FundInitiative
::
initializeNewInitiative
(
$this
->
getViewer
());
}
protected
function
newObjectQuery
()
{
return
new
FundInitiativeQuery
();
}
protected
function
getObjectCreateTitleText
(
$object
)
{
return
pht
(
'Create New Initiative'
);
}
protected
function
getObjectEditTitleText
(
$object
)
{
return
pht
(
'Edit Initiative: %s'
,
$object
->
getName
());
}
protected
function
getObjectEditShortText
(
$object
)
{
return
$object
->
getName
();
}
protected
function
getObjectCreateShortText
()
{
return
pht
(
'Create Initiative'
);
}
protected
function
getObjectName
()
{
return
pht
(
'Initivative'
);
}
protected
function
getObjectCreateCancelURI
(
$object
)
{
return
$this
->
getApplication
()->
getApplicationURI
(
'/'
);
}
protected
function
getEditorURI
()
{
return
$this
->
getApplication
()->
getApplicationURI
(
'edit/'
);
}
protected
function
getObjectViewURI
(
$object
)
{
return
$object
->
getViewURI
();
}
protected
function
getCreateNewObjectPolicy
()
{
return
$this
->
getApplication
()->
getPolicy
(
FundCreateInitiativesCapability
::
CAPABILITY
);
}
protected
function
buildCustomEditFields
(
$object
)
{
$viewer
=
$this
->
getViewer
();
$v_merchant
=
$object
->
getMerchantPHID
();
$merchants
=
id
(
new
PhortuneMerchantQuery
())
->
setViewer
(
$viewer
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
execute
();
$merchant_options
=
array
();
foreach
(
$merchants
as
$merchant
)
{
$merchant_options
[
$merchant
->
getPHID
()]
=
pht
(
'Merchant %d %s'
,
$merchant
->
getID
(),
$merchant
->
getName
());
}
if
(
$v_merchant
&&
empty
(
$merchant_options
[
$v_merchant
]))
{
$merchant_options
=
array
(
$v_merchant
=>
pht
(
'(Restricted Merchant)'
),
)
+
$merchant_options
;
}
$merchant_instructions
=
null
;
if
(!
$merchant_options
)
{
$merchant_instructions
=
pht
(
'NOTE: You do not control any merchant accounts which can receive '
.
'payments from this initiative. When you create an initiative, '
.
'you need to specify a merchant account where funds will be paid '
.
'to. Create a merchant account in the Phortune application before '
.
'creating an initiative in Fund.'
);
}
return
array
(
id
(
new
PhabricatorTextEditField
())
->
setKey
(
'name'
)
->
setLabel
(
pht
(
'Name'
))
->
setDescription
(
pht
(
'Initiative name.'
))
->
setConduitTypeDescription
(
pht
(
'New initiative name.'
))
->
setTransactionType
(
FundInitiativeNameTransaction
::
TRANSACTIONTYPE
)
->
setValue
(
$object
->
getName
())
->
setIsRequired
(
true
),
id
(
new
PhabricatorSelectEditField
())
->
setKey
(
'merchantPHID'
)
->
setLabel
(
pht
(
'Merchant'
))
->
setDescription
(
pht
(
'Merchant operating the initiative.'
))
->
setConduitTypeDescription
(
pht
(
'New initiative merchant.'
))
->
setControlInstructions
(
$merchant_instructions
)
->
setValue
(
$object
->
getMerchantPHID
())
->
setTransactionType
(
FundInitiativeMerchantTransaction
::
TRANSACTIONTYPE
)
->
setOptions
(
$merchant_options
)
->
setIsRequired
(
true
),
id
(
new
PhabricatorRemarkupEditField
())
->
setKey
(
'description'
)
->
setLabel
(
pht
(
'Description'
))
->
setDescription
(
pht
(
'Initiative long description.'
))
->
setConduitTypeDescription
(
pht
(
'New initiative description.'
))
->
setTransactionType
(
FundInitiativeDescriptionTransaction
::
TRANSACTIONTYPE
)
->
setValue
(
$object
->
getDescription
()),
id
(
new
PhabricatorRemarkupEditField
())
->
setKey
(
'risks'
)
->
setLabel
(
pht
(
'Risks/Challenges'
))
->
setDescription
(
pht
(
'Initiative risks and challenges.'
))
->
setConduitTypeDescription
(
pht
(
'Initiative risks and challenges.'
))
->
setTransactionType
(
FundInitiativeRisksTransaction
::
TRANSACTIONTYPE
)
->
setValue
(
$object
->
getRisks
()),
);
}
}
Event Timeline
Log In to Comment