You are here

function disclaimer_admin_settings in Disclaimer 7

Same name and namespace in other branches
  1. 6.2 disclaimer.admin.inc \disclaimer_admin_settings()
  2. 6 disclaimer.admin.inc \disclaimer_admin_settings()

Admin settings form for Disclaimer.

1 string reference to 'disclaimer_admin_settings'
disclaimer_menu in ./disclaimer.module
Implements hook_menu().

File

./disclaimer.admin.inc, line 11
Admin page callbacks for the Disclaimer module.

Code

function disclaimer_admin_settings() {
  $current_theme = variable_get('theme_default', NULL);
  $regions = system_region_list($current_theme, REGIONS_VISIBLE);
  $key = variable_get('disclaimer_region', NULL);
  if (!isset($regions['footer']) || !$key) {
    $form['disclaimer_region'] = array(
      '#type' => 'select',
      '#title' => t('Theme region'),
      '#options' => $regions,
      '#default_value' => variable_get('disclaimer_region', ''),
      '#description' => t('Choose theme region to handle disclaimer content, best is last visible region like footer or bottom.'),
    );
  }
  $form['disclaimer_preview'] = array(
    '#type' => 'fieldset',
    '#collapsible' => TRUE,
    '#collapsed' => FALSE,
    '#title' => t('Preview'),
  );
  $form['disclaimer_preview']['content'] = array(
    '#markup' => _disclaimer_build_content(FALSE),
  );

  // Build content selection form for content and footer.
  $form += _disclaimer_content_selection();
  $form += _disclaimer_content_selection('footer');
  $form['action'] = array(
    '#type' => 'fieldset',
    '#collapsible' => TRUE,
    '#collapsed' => FALSE,
    '#title' => t('Settings'),
  );
  $form['action']['disclaimer_enter_url'] = array(
    '#type' => 'textfield',
    '#title' => t('Enter url'),
    '#default_value' => variable_get('disclaimer_enter_url', ''),
    '#description' => t('Set the url when press Enter on disclaimer. IF EMPTY: modal is just closed without redirection. You can use Drupal system path.'),
  );
  $form['action']['disclaimer_exit_url'] = array(
    '#type' => 'textfield',
    '#title' => t('Exit url'),
    '#default_value' => variable_get('disclaimer_exit_url', 'http://www.google.com'),
    '#description' => t('Set the url when press Exit on disclaimer. Default is "http://www.google.com".'),
  );
  $form['action']['disclaimer_age_form'] = array(
    '#type' => 'checkbox',
    '#title' => t('Age verification form.'),
    '#default_value' => variable_get('disclaimer_age_form', 0),
    '#return_value' => 1,
    '#description' => t('NOTE: if you test modal on this current settings page, age verification will not work because of preview window.'),
  );
  $form['action']['disclaimer_age_limit'] = array(
    '#type' => 'textfield',
    '#title' => t('Age limit'),
    '#field_suffix' => t('years old'),
    '#default_value' => variable_get('disclaimer_age_limit', 18),
    '#size' => 3,
    '#maxlength' => 3,
    '#description' => t('If you add age verification form, you can set age limit.'),
    '#element_validate' => array(
      'element_validate_integer_positive',
    ),
    '#states' => array(
      'visible' => array(
        ':input[name="disclaimer_age_form"]' => array(
          'checked' => TRUE,
        ),
      ),
    ),
  );
  $form['action']['disclaimer_visibility'] = array(
    '#type' => 'radios',
    '#title' => t('Show disclaimer on specific pages'),
    '#options' => array(
      t('Show disclaimer on every page except the listed pages.'),
      t('Show disclaimer on only the listed pages.'),
    ),
    '#default_value' => variable_get('disclaimer_visibility', 0),
  );
  $form['action']['disclaimer_pages'] = array(
    '#type' => 'textarea',
    '#title' => t('Disclaimer specific pages'),
    '#default_value' => variable_get('disclaimer_pages', "admin/*\nuser"),
    '#description' => t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array(
      '%blog' => 'blog',
      '%blog-wildcard' => 'blog/*',
      '%front' => '<front>',
    )),
  );
  $form['style'] = array(
    '#type' => 'fieldset',
    '#collapsible' => TRUE,
    '#collapsed' => FALSE,
    '#title' => t('Actions'),
  );
  $form['style']['disclaimer_action_type'] = array(
    '#type' => 'select',
    '#title' => t('Actions style'),
    '#default_value' => variable_get('disclaimer_action_type', 'text'),
    '#options' => array(
      'text' => t('Use text'),
      'image' => t('Use images'),
    ),
    '#description' => t('Select actions types, image or text.'),
  );

  // Actions options.
  $types = array(
    'enter' => array(
      'id' => 'enter',
      'name' => t('Enter'),
    ),
    'exit' => array(
      'id' => 'exit',
      'name' => t('Exit'),
    ),
  );

  // Build text setting.
  $form['style']['text'] = array(
    '#type' => 'container',
    '#states' => array(
      'visible' => array(
        ':input[name="disclaimer_action_type"]' => array(
          'value' => 'text',
        ),
      ),
    ),
  );
  foreach ($types as $type) {
    $form['style']['text']['disclaimer_' . $type['id'] . '_txt'] = array(
      '#type' => 'textfield',
      '#title' => t('!name text', array(
        '!name' => ucfirst($type['name']),
      )),
      '#size' => 20,
      '#default_value' => variable_get('disclaimer_' . $type['id'] . '_txt', $type['name']),
      '#description' => t('Set the text for this action on disclaimer.'),
    );
  }

  // Build images setting.
  $form['style']['img'] = array(
    '#type' => 'container',
    '#states' => array(
      'visible' => array(
        ':input[name="disclaimer_action_type"]' => array(
          'value' => 'image',
        ),
      ),
    ),
  );

  // Get image styles for options.
  $options = image_style_options();
  foreach ($types as $type) {
    $form['style']['img'][$type['id']] = array(
      '#type' => 'fieldset',
      '#collapsible' => FALSE,
      '#collapsed' => FALSE,
      '#title' => t('!name image', array(
        '!name' => $type['name'],
      )),
    );

    // Use the #managed_file FAPI element to upload an image file.
    $form['style']['img'][$type['id']]['disclaimer_' . $type['id'] . '_img'] = array(
      '#type' => 'managed_file',
      '#title' => t('Image'),
      '#description' => t('Image to be used for this action button.'),
      '#default_value' => variable_get('disclaimer_' . $type['id'] . '_img', ''),
      '#upload_location' => 'public://images_disclaimer/',
    );
    $form['style']['img'][$type['id']]['disclaimer_' . $type['id'] . '_img_style'] = array(
      '#type' => 'select',
      '#title' => t('Image style'),
      '#description' => t('Select the style to render image.'),
      '#default_value' => variable_get('disclaimer_' . $type['id'] . '_img_style', ''),
      '#options' => $options,
    );
    $form['style']['img'][$type['id']]['disclaimer_' . $type['id'] . '_img_alt'] = array(
      '#type' => 'textfield',
      '#title' => t('Alt text'),
      '#size' => 20,
      '#default_value' => variable_get('disclaimer_' . $type['id'] . '_img_alt', $type['name']),
      '#description' => t('Image alt/title text to be used.'),
    );
  }
  $form['modal'] = array(
    '#type' => 'fieldset',
    '#collapsible' => TRUE,
    '#collapsed' => FALSE,
    '#title' => t('Colorbox override'),
    '#description' => t('Size override specific for disclaimer.'),
  );
  $form['modal']['disclaimer_width'] = array(
    '#type' => 'textfield',
    '#title' => t('Max width'),
    '#default_value' => variable_get('disclaimer_width', '80%'),
    '#size' => 4,
    '#maxlength' => 4,
    '#description' => t('Set a maximum width for loaded content. Example: "100%", 500, "500px".'),
  );
  $form['modal']['disclaimer_height'] = array(
    '#type' => 'textfield',
    '#title' => t('Max height'),
    '#default_value' => variable_get('disclaimer_height', '80%'),
    '#size' => 4,
    '#maxlength' => 4,
    '#description' => t('Set a maximum height for loaded content. Example: "100%", 500, "500px".'),
  );
  $form['modal']['disclaimer_initialwidth'] = array(
    '#type' => 'textfield',
    '#title' => t('Initial width'),
    '#default_value' => variable_get('disclaimer_initialwidth', '300'),
    '#size' => 4,
    '#maxlength' => 4,
    '#description' => t('Set the initial width, prior to any content being loaded. Example: "100%", 500, "500px".'),
  );
  $form['modal']['disclaimer_initialheight'] = array(
    '#type' => 'textfield',
    '#title' => t('Initial height'),
    '#default_value' => variable_get('disclaimer_initialheight', '250'),
    '#size' => 4,
    '#maxlength' => 4,
    '#description' => t('Set the initial height, prior to any content being loaded. Example: "100%", 500, "500px".'),
  );
  $form['disclaimer_advanced'] = array(
    '#type' => 'fieldset',
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
    '#title' => t('Advanced options'),
  );
  $form['disclaimer_advanced']['disclaimer_logged'] = array(
    '#type' => 'checkbox',
    '#title' => t('Show disclaimer when logged user came back.'),
    '#default_value' => variable_get('disclaimer_logged', 1),
    '#description' => t('Show disclaimer when user has new browser session. Note: this option is complementary to <a href="!url">bypass disclaimer access</a>.', array(
      '!url' => url('admin/people/permissions', array(
        'fragment' => 'module-disclaimer',
      )),
    )),
  );
  $form['disclaimer_advanced']['disclaimer_css'] = array(
    '#type' => 'checkbox',
    '#title' => t('Load minimal module css.'),
    '#default_value' => variable_get('disclaimer_css', 1),
    '#description' => t('Load minimal css included with this module, or disable to use your own css.'),
  );
  $form['disclaimer_advanced']['disclaimer_cookie_name'] = array(
    '#type' => 'textfield',
    '#title' => t('Cookie name'),
    '#default_value' => variable_get('disclaimer_cookie_name', 'disclaimerShow'),
    '#description' => t('Set the cookie name. Default is "disclaimerShow".'),
    '#required' => TRUE,
  );
  $form['disclaimer_advanced']['disclaimer_cookie_path'] = array(
    '#type' => 'textfield',
    '#title' => t('Cookie path'),
    '#default_value' => variable_get('disclaimer_cookie_path', '/'),
    '#description' => t('Set the cookie path. Default is "/" (recommended for access on all your site).'),
    '#required' => TRUE,
  );
  $form['disclaimer_advanced']['disclaimer_cookie_domain'] = array(
    '#type' => 'textfield',
    '#title' => t('Cookie domain'),
    '#default_value' => variable_get('disclaimer_cookie_domain', $_SERVER['SERVER_NAME']),
    '#description' => t('Set the cookie domain. Default is current server domain.'),
    '#required' => TRUE,
  );
  $form['#submit'][] = 'disclaimer_admin_settings_submit';
  return system_settings_form($form);
}