<?php
/**
 * Test Generated example of using tax_contribution_page create API.
 *
 * Create Contribution with Nested Line Items.
 *
 * @return array
 *   API result array
 */
function tax_contribution_page_create_example() {
  $params = array(
    'contact_id' => 1,
    'receive_date' => '20120511',
    'total_amount' => '400',
    'financial_type_id' => 7,
    'trxn_id' => 12345,
    'invoice_id' => 67890,
    'source' => 'SSF',
    'contribution_status_id' => 1,
    'skipLineItem' => 1,
    'api.line_item.create' => array(
      '0' => array(
        'price_field_id' => array(
          '0' => 3,
        ),
        'qty' => 1,
        'line_total' => '100',
        'unit_price' => '100',
        'financial_type_id' => 7,
      ),
      '1' => array(
        'price_field_id' => array(
          '0' => 3,
        ),
        'qty' => 1,
        'line_total' => '300',
        'unit_price' => '300',
        'financial_type_id' => 8,
      ),
    ),
  );

  try{
    $result = civicrm_api3('tax_contribution_page', 'create', $params);
  }
  catch (CiviCRM_API3_Exception $e) {
    // Handle error here.
    $errorMessage = $e->getMessage();
    $errorCode = $e->getErrorCode();
    $errorData = $e->getExtraParams();
    return array(
      'error' => $errorMessage,
      'error_code' => $errorCode,
      'error_data' => $errorData,
    );
  }

  return $result;
}

/**
 * Function returns array of result expected from previous function.
 *
 * @return array
 *   API result array
 */
function tax_contribution_page_create_expectedresult() {

  $expectedResult = array(
    'is_error' => 0,
    'version' => 3,
    'count' => 1,
    'id' => 1,
    'values' => array(
      '1' => array(
        'id' => '1',
        'contact_id' => '1',
        'financial_type_id' => '7',
        'contribution_page_id' => '',
        'payment_instrument_id' => '4',
        'receive_date' => '20120511000000',
        'non_deductible_amount' => '',
        'total_amount' => '435',
        'fee_amount' => 0,
        'net_amount' => '435',
        'trxn_id' => '12345',
        'invoice_id' => '67890',
        'currency' => 'USD',
        'cancel_date' => '',
        'cancel_reason' => '',
        'receipt_date' => '',
        'thankyou_date' => '',
        'source' => 'SSF',
        'amount_level' => '',
        'contribution_recur_id' => '',
        'is_test' => '',
        'is_pay_later' => '',
        'contribution_status_id' => '1',
        'address_id' => '',
        'check_number' => '',
        'campaign_id' => '',
        'creditnote_id' => '',
        'tax_amount' => '35',
        'contribution_type_id' => '7',
        'api.line_item.create' => array(
          '0' => array(
            'is_error' => 0,
            'version' => 3,
            'count' => 1,
            'id' => 1,
            'values' => array(
              '0' => array(
                'id' => '1',
                'entity_table' => 'civicrm_contribution',
                'entity_id' => '1',
                'contribution_id' => '1',
                'price_field_id' => array(
                  '0' => '3',
                ),
                'label' => 'line item',
                'qty' => '1',
                'unit_price' => '100',
                'line_total' => '100',
                'participant_count' => '',
                'price_field_value_id' => '',
                'financial_type_id' => '7',
                'deductible_amount' => '',
                'tax_amount' => '20',
              ),
            ),
          ),
          '1' => array(
            'is_error' => 0,
            'version' => 3,
            'count' => 1,
            'id' => 2,
            'values' => array(
              '0' => array(
                'id' => '2',
                'entity_table' => 'civicrm_contribution',
                'entity_id' => '1',
                'contribution_id' => '1',
                'price_field_id' => array(
                  '0' => '3',
                ),
                'label' => 'line item',
                'qty' => '1',
                'unit_price' => '300',
                'line_total' => '300',
                'participant_count' => '',
                'price_field_value_id' => '',
                'financial_type_id' => '8',
                'deductible_amount' => '',
                'tax_amount' => '15',
              ),
            ),
          ),
        ),
      ),
    ),
  );

  return $expectedResult;
}

/**
* This example has been generated from the API test suite.
* The test that created it is called
* testCreateContributionChainedLineItems
* and can be found in
* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/TaxContributionPageTest.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
*/