/[drupal]/contributions/modules/tellafriend/tellafriend.module
ViewVC logotype

Diff of /contributions/modules/tellafriend/tellafriend.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.18, Sun Jan 4 16:38:21 2009 UTC revision 1.19, Wed Aug 26 16:45:10 2009 UTC
# Line 95  function tellafriend_settings() { Line 95  function tellafriend_settings() {
95      '#rows' => 5,      '#rows' => 5,
96      '#description' => t('A description or information shown above the <em>Tell a friend</em> form.'),      '#description' => t('A description or information shown above the <em>Tell a friend</em> form.'),
97    );    );
98      $form['tellafriend_general']['tellafriend_personal_message'] = array(
99        '#type' => 'textarea',
100        '#title' => t('Personal Message'),
101        '#default_value' => variable_get('tellafriend_personal_message', t('I found this great web site, which you should really check out!')),
102        '#size' => 70,
103        '#rows' => 5,
104        '#description' => t('A description or information shown above the <em>Tell a friend</em> form - Personal Message.'),
105      );
106    $form['tellafriend_general']['tellafriend_success'] = array(    $form['tellafriend_general']['tellafriend_success'] = array(
107      '#type' => 'textfield',      '#type' => 'textfield',
108      '#title' => t('Success redirect path'),      '#title' => t('Success redirect path'),
# Line 360  function tellafriend_page(&$form_state) Line 368  function tellafriend_page(&$form_state)
368    $form['tellafriend_personal'] = array(    $form['tellafriend_personal'] = array(
369      '#type' => 'textarea',      '#type' => 'textarea',
370      '#title' => t('Your Personal message'),      '#title' => t('Your Personal message'),
371      '#default_value' => t('I found this great web site, which you should really check out!'),      '#default_value' => variable_get('tellafriend_personal_message', 'I found this great web site, which you should really check out!'),
372      '#cols' => 70,      '#cols' => 70,
373      '#rows' => 5,      '#rows' => 5,
374      '#description' => t('Add your personal message to the e-mail.'),      '#description' => t('Add your personal message to the e-mail.'),

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

  ViewVC Help
Powered by ViewVC 1.1.2