You are here

function splashify_admin_when_form in Splashify 6

Same name and namespace in other branches
  1. 7 admin/splashify.admin.when.inc \splashify_admin_when_form()

"When" settings tab.

1 string reference to 'splashify_admin_when_form'
splashify_menu in ./splashify.module
Implements hook_menu().

File

admin/splashify.admin.when.inc, line 14
The admin "When" tab.

Code

function splashify_admin_when_form(&$form_state) {
  $form = array();
  $form['description'] = array(
    '#markup' => '<p>' . t('When should the splash page show up? This is also where the main mobile option is defined.') . '</p>',
  );
  $form['desktop'] = array(
    '#type' => 'fieldset',
    '#title' => t('Desktop Settings'),
  );
  $form['desktop']['splashify_when_desktop_frequency'] = array(
    '#type' => 'select',
    '#title' => t('How often should visitors see the splash page?'),
    '#default_value' => variable_get('splashify_when_desktop_frequency', 'never'),
    '#options' => array(
      'never' => t('Never (off)'),
      'always' => t('Always'),
      'once' => t('Once'),
      'daily' => t('Daily'),
      'weekly' => t('Weekly'),
    ),
  );
  $form['mobile'] = array(
    '#type' => 'fieldset',
    '#title' => t('Mobile Settings'),
  );
  $disable_mobile = TRUE;
  if (module_exists('mobile_tools')) {
    $disable_mobile = FALSE;
  }
  $mobiletools_link = t('In order to use this feature, you need to have the <a href="@mobiltools" target="_blank">Mobile Tools</a> module enabled.', array(
    '@mobiltools' => 'http://drupal.org/project/mobile_tools',
  ));
  $form['mobile']['splashify_when_mobile'] = array(
    '#type' => 'checkbox',
    '#title' => t('Enable Unique Mobile Splash'),
    '#default_value' => variable_get('splashify_when_mobile', 0),
    '#description' => $mobiletools_link,
    '#disabled' => $disable_mobile,
    '#ajax' => array(
      'callback' => 'splashify_ajax_when_mobile_callback',
      'wrapper' => 'when-mobile-settings',
      'method' => 'replace',
      'effect' => 'slide',
    ),
  );

  // Set a variable that is either defined by the ajax checkbox, or a
  // previously saved value.
  if (isset($form_state['values']['splashify_when_mobile'])) {
    $when_mobile_set = $form_state['values']['splashify_when_mobile'];
  }
  else {
    $when_mobile_set = variable_get('splashify_when_mobile', 0);
  }
  $form['mobile']['options']['begin'] = array(
    '#markup' => '<div id="when-mobile-settings">',
  );

  // If the mobile splash is enabled, display the mobile options.
  if ($when_mobile_set == 1) {
    $form['mobile']['options']['splashify_when_mobile_frequency'] = array(
      '#type' => 'select',
      '#title' => t('How often should mobile visitors see the mobile splash page?'),
      '#default_value' => variable_get('splashify_when_mobile_frequency', 'never'),
      '#options' => array(
        'never' => t('Never (off)'),
        'always' => t('Always'),
        'once' => t('Once'),
        'daily' => t('Daily'),
        'weekly' => t('Weekly'),
      ),
    );
    $form['mobile']['options']['splashify_when_mobile_test'] = array(
      '#type' => 'checkbox',
      '#title' => t('Test Mobile'),
      '#default_value' => variable_get('splashify_when_mobile_test', 0),
      '#description' => t('Turn this option on to force the mobile settings to take affect so you can test from your desktop browser.'),
    );
  }
  $form['mobile']['options']['end'] = array(
    '#markup' => '</div>',
  );
  $form['#submit'][] = 'splashify_admin_when_form_submit';
  return system_settings_form($form);
}