You are here

function commerce_reports_tax_form in Commerce Reporting 7.3

Same name and namespace in other branches
  1. 7.4 modules/tax/commerce_reports_tax.admin.inc \commerce_reports_tax_form()

Configuration form.

1 string reference to 'commerce_reports_tax_form'
commerce_reports_tax_menu in modules/tax/commerce_reports_tax.module
Implements hook_menu().

File

modules/tax/commerce_reports_tax.admin.inc, line 10
Administrative forms.

Code

function commerce_reports_tax_form($form, &$form_state) {
  $form['generate'] = array(
    '#type' => 'submit',
    '#value' => t('Generate all tax information'),
    '#submit' => array(
      'commerce_reports_tax_form_submit_generate',
    ),
  );
  return $form;
}