You are here

function commerce_stock_admin_form in Commerce Stock 7.2

Same name and namespace in other branches
  1. 7 includes/commerce_stock.admin.inc \commerce_stock_admin_form()

Commerce Stock admin form.

1 string reference to 'commerce_stock_admin_form'
commerce_stock_menu in ./commerce_stock.module
Implements hook_menu().

File

includes/commerce_stock.admin.inc, line 11
Administrative callbacks and form builder functions for Commerce Stock.

Code

function commerce_stock_admin_form($form, &$form_state) {
  $form['confirmation'] = array(
    '#title' => 'Commerce Stock API',
    '#markup' => 'Commerce stock API enabled',
  );
  return $form;
}