drupal-civicrm/sites/all/modules/civicrm/api/v3/examples/CustomField/Create.php

114 lines
2.8 KiB
PHP
Raw Normal View History

2018-01-14 15:10:16 +02:00
<?php
/**
* Test Generated example demonstrating the CustomField.create API.
*
* @return array
* API result array
*/
function custom_field_create_example() {
$params = array(
'custom_group_id' => 1,
'name' => 'test_textfield2',
'label' => 'Name1',
'html_type' => 'Text',
'data_type' => 'String',
'default_value' => 'abc',
'weight' => 4,
'is_required' => 1,
'is_searchable' => 0,
'is_active' => 1,
);
try{
$result = civicrm_api3('CustomField', 'create', $params);
}
catch (CiviCRM_API3_Exception $e) {
// Handle error here.
$errorMessage = $e->getMessage();
$errorCode = $e->getErrorCode();
$errorData = $e->getExtraParams();
return array(
'is_error' => 1,
'error_message' => $errorMessage,
'error_code' => $errorCode,
'error_data' => $errorData,
);
}
return $result;
}
/**
* Function returns array of result expected from previous function.
*
* @return array
* API result array
*/
function custom_field_create_expectedresult() {
$expectedResult = array(
'is_error' => 0,
'version' => 3,
'count' => 1,
'id' => 1,
'values' => array(
'1' => array(
'id' => '1',
'custom_group_id' => '1',
'name' => 'test_textfield2',
'label' => 'Name1',
'data_type' => 'String',
'html_type' => 'Text',
'default_value' => 'abc',
'is_required' => '1',
'is_searchable' => 0,
'is_search_range' => 0,
'weight' => '4',
'help_pre' => '',
'help_post' => '',
'mask' => '',
'attributes' => '',
'javascript' => '',
'is_active' => '1',
'is_view' => 0,
'options_per_line' => '',
'text_length' => '',
'start_date_years' => '',
'end_date_years' => '',
'date_format' => '',
'time_format' => '',
'note_columns' => '',
'note_rows' => '',
'column_name' => 'name1_1',
'option_group_id' => '',
'filter' => '',
'in_selector' => 0,
),
),
);
return $expectedResult;
}
/*
* This example has been generated from the API test suite.
* The test that created it is called "testCustomFieldCreateWithEdit"
* and can be found at:
* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/CustomFieldTest.php
*
* You can see the outcome of the API tests at
* https://test.civicrm.org/job/CiviCRM-master-git/
*
* To Learn about the API read
* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
*
* Browse the api on your own site with the api explorer
* http://MYSITE.ORG/path/to/civicrm/api
*
* Read more about testing here
* http://wiki.civicrm.org/confluence/display/CRM/Testing
*
* API Standards documentation:
* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
*/