You are here

function rb_numbers_action_multiply_form in Rules Bonus Pack 6

Configuration form for 'rb_numbers_action_multiply'.

File

./rb_numbers.module, line 123
Functions for extending number management with Rules.

Code

function rb_numbers_action_multiply_form($settings, &$form) {
  $form['settings']['factors'] = array(
    '#type' => 'textarea',
    '#title' => t('Factors to multiply'),
    '#default_value' => $settings['factors'],
    '#description' => t('Enter the numbers to multiply, one per line. Note that
      CCK tokens should user raw values, not formatted ones.'),
  );
}