--- /dev/null
+<?php
+
+/**
+ * @file
+ * Muamba admin callbacks.
+ */
+
+/**
+ * Menu callback.
+ */
+function muamba_config_form($form, &$form_state) {
+ $form['muamba_reject_all_on_accept'] = array(
+ '#type' => 'checkbox',
+ '#title' => t('Reject all pending requests upon acceptance'),
+ '#default_value' => variable_get('muamba_reject_all_on_accept', FALSE),
+ '#description' => t('Cancel all other requests of an item upon acceptance'),
+ );
+
+ return system_settings_form($form);
+}