Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
form-processor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mattwire
form-processor
Commits
eb45c3bf
Commit
eb45c3bf
authored
5 years ago
by
jaapjansma
Browse files
Options
Downloads
Patches
Plain Diff
Fixed regression after import/export api change
parent
4b48308d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
api/v3/FormProcessorDefaultDataInput/Converttitletoname.php
+1
-1
1 addition, 1 deletion
api/v3/FormProcessorDefaultDataInput/Converttitletoname.php
api/v3/FormProcessorInstance/Import.php
+6
-17
6 additions, 17 deletions
api/v3/FormProcessorInstance/Import.php
with
7 additions
and
18 deletions
api/v3/FormProcessorDefaultDataInput/Converttitletoname.php
+
1
−
1
View file @
eb45c3bf
...
@@ -25,7 +25,7 @@ function civicrm_api3_form_processor_default_data_input_converttitletoname($para
...
@@ -25,7 +25,7 @@ function civicrm_api3_form_processor_default_data_input_converttitletoname($para
* @return void
* @return void
* @see http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
* @see http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
*/
*/
function
_civicrm_api3_form_processor_input_converttitletoname_spec
(
&
$spec
)
{
function
_civicrm_api3_form_processor_
default_data_
input_converttitletoname_spec
(
&
$spec
)
{
$spec
[
'title'
]
=
array
(
$spec
[
'title'
]
=
array
(
'title'
=>
E
::
ts
(
'Title'
),
'title'
=>
E
::
ts
(
'Title'
),
'type'
=>
CRM_Utils_Type
::
T_STRING
,
'type'
=>
CRM_Utils_Type
::
T_STRING
,
...
...
This diff is collapsed.
Click to expand it.
api/v3/FormProcessorInstance/Import.php
+
6
−
17
View file @
eb45c3bf
...
@@ -10,6 +10,12 @@ use CRM_FormProcessor_ExtensionUtil as E;
...
@@ -10,6 +10,12 @@ use CRM_FormProcessor_ExtensionUtil as E;
* @see http://wiki.civicrm.org/confluence/display/CRMDOC/API+Architecture+Standards
* @see http://wiki.civicrm.org/confluence/display/CRMDOC/API+Architecture+Standards
*/
*/
function
_civicrm_api3_form_processor_instance_Import_spec
(
&
$spec
)
{
function
_civicrm_api3_form_processor_instance_Import_spec
(
&
$spec
)
{
$spec
[
'file'
]
=
array
(
'title'
=>
E
::
ts
(
'Specification File'
),
'type'
=>
CRM_Utils_Type
::
T_STRING
,
'description'
=>
E
::
ts
(
'If a file path is given, the JSON configuration will be imported from there'
),
'api.required'
=>
false
);
}
}
/**
/**
...
@@ -53,20 +59,3 @@ function civicrm_api3_form_processor_instance_Import($params) {
...
@@ -53,20 +59,3 @@ function civicrm_api3_form_processor_instance_Import($params) {
}
}
return
$returnValues
;
return
$returnValues
;
}
}
/**
* FormProcessorInstance.Import API specification (optional)
* This is used for documentation and validation.
*
* @param array $spec description of fields supported by this API call
* @return void
* @see http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
*/
function
_civicrm_api3_form_processor_instance_export_spec
(
&
$spec
)
{
$spec
[
'file'
]
=
array
(
'title'
=>
E
::
ts
(
'Specification File'
),
'type'
=>
CRM_Utils_Type
::
T_STRING
,
'description'
=>
E
::
ts
(
'If a file path is given, the JSON configuration will be imported from there'
),
'api.required'
=>
false
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment