function better_messages_admin in Better Messages 7
Same name and namespace in other branches
- 6.2 better_messages.inc \better_messages_admin()
- 6 better_messages.inc \better_messages_admin()
1 string reference to 'better_messages_admin'
File
- ./
better_messages.inc, line 6
Code
function better_messages_admin() {
$settings = better_messages_get_settings();
$form['position'] = array(
'#type' => 'fieldset',
'#title' => t('Messages positions and basic properties'),
'#weight' => -5,
'#collapsible' => TRUE,
'#collapsed' => False,
);
$form['position']['pos'] = array(
'#type' => 'radios',
'#title' => t('Set position of Message'),
'#default_value' => $settings['position'],
'#description' => t('Position of message relative to screen'),
'#attributes' => array(
'class' => array(
'better-messages-admin-radios',
),
),
'#options' => array(
'center' => t('Center screen'),
'tl' => t('Top left'),
'tr' => t('Top right'),
'bl' => t('Bottom left'),
'br' => t('Bottom right'),
),
);
$form['position']['fixed'] = array(
'#type' => 'checkbox',
'#default_value' => $settings['fixed'],
'#title' => t('Keep fixed position of message as you scroll.'),
);
$form['position']['width'] = array(
'#type' => 'textfield',
'#title' => t('Custom width'),
'#description' => t('Width in pixel. Example: 400px<br />Or percentage. Example: 100%'),
'#default_value' => $settings['width'],
'#size' => 20,
'#maxlength' => 20,
'#required' => TRUE,
);
$form['position']['horizontal'] = array(
'#type' => 'textfield',
'#title' => t('Left/Right spacing'),
'#description' => t('In active when position is set to "center".<br />In pixel. Example: 10'),
'#default_value' => $settings['horizontal'],
'#size' => 20,
'#maxlength' => 20,
'#required' => TRUE,
);
$form['position']['vertical'] = array(
'#type' => 'textfield',
'#title' => t('Top/Down spacing'),
'#description' => t('Inactive when position is set to "center".<br />In pixel. Example: 10'),
'#default_value' => $settings['vertical'],
'#size' => 20,
'#maxlength' => 20,
'#required' => TRUE,
);
$form['animation'] = array(
'#type' => 'fieldset',
'#title' => t('Messages animation settings'),
'#weight' => -3,
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['animation']['popin_effect'] = array(
'#type' => 'select',
'#title' => t('Pop-in (show) message box effect'),
'#default_value' => $settings['popin']['effect'],
'#options' => array(
'fadeIn' => t('Fade in'),
'slideDown' => t('Slide down'),
),
);
$form['animation']['popin_duration'] = array(
'#type' => 'textfield',
'#title' => t('Duration of (show) effect'),
'#description' => t('A string representing one of the three predefined speeds ("slow", "normal", or "fast").<br />Or the number of milliseconds to run the animation (e.g. 1000).'),
'#default_value' => $settings['popin']['duration'],
'#size' => 20,
'#maxlength' => 20,
);
$form['animation']['popout_effect'] = array(
'#type' => 'select',
'#title' => t('Pop-out (close) message box effect'),
'#default_value' => $settings['popout']['effect'],
'#options' => array(
'fadeIn' => t('Fade out'),
'slideUp' => t('Slide Up'),
),
);
$form['animation']['popout_duration'] = array(
'#type' => 'textfield',
'#title' => t('Duration of (close) effect'),
'#description' => t('A string representing one of the three predefined speeds ("slow", "normal", or "fast").<br />Or the number of milliseconds to run the animation (e.g. 1000).'),
'#default_value' => $settings['popout']['duration'],
'#size' => 20,
'#maxlength' => 20,
);
$form['animation']['autoclose'] = array(
'#type' => 'textfield',
'#title' => t('Number of seconds to auto close after the page has loaded'),
'#description' => t('0 for never. You can set it as 0.25 for quarter second'),
'#default_value' => $settings['autoclose'],
'#size' => 20,
'#maxlength' => 20,
);
$form['animation']['disable_autoclose'] = array(
'#type' => 'checkbox',
'#title' => t('Disable auto close if messages inculde an error message'),
'#default_value' => $settings['disable_autoclose'],
);
$form['animation']['show_countdown'] = array(
'#type' => 'checkbox',
'#title' => t('Show countdown timer'),
'#default_value' => $settings['show_countdown'],
);
$form['animation']['hover_autoclose'] = array(
'#type' => 'checkbox',
'#title' => t('Stop auto close timer when hover'),
'#default_value' => $settings['hover_autoclose'],
);
$form['animation']['open_delay'] = array(
'#type' => 'textfield',
'#title' => t('Number of seconds to delay message after the page has loaded'),
'#description' => t('0 for never. You can set it as 0.25 for quarter second'),
'#default_value' => $settings['opendelay'],
'#size' => 20,
'#maxlength' => 20,
);
$form['vis_settings'] = array(
'#type' => 'fieldset',
'#title' => t('Better Messages visibility'),
'#weight' => 0,
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$themes = list_themes();
$themes_options = array();
foreach ($themes as $theme) {
if ($theme->status) {
$themes_options[$theme->name] = $theme->name;
}
}
$form['vis_settings']['themes'] = array(
'#type' => 'checkboxes',
'#title' => t('Use Better Messages popup for specific themes'),
'#description' => t('It you didn\'t select any themes, Better Messages will be used for all'),
'#options' => $themes_options,
'#default_value' => isset($settings['extra']['themes']) ? $settings['extra']['themes'] : $themes_options,
);
$options = array(
t('Show on every page except the listed pages.'),
t('Show on only the listed pages.'),
);
$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['vis_settings']['visibility'] = array(
'#type' => 'radios',
'#title' => t('Show Better Messages on specific pages'),
'#options' => $options,
'#default_value' => $settings['extra']['visibility'],
);
$form['vis_settings']['pages'] = array(
'#type' => 'textarea',
'#title' => t('Pages'),
'#default_value' => $settings['extra']['pages'],
'#description' => $description,
);
$form['vis_settings']['admin'] = array(
'#type' => 'checkbox',
'#title' => t('Use Better Messages popup for the admin user (UID 1)'),
'#default_value' => $settings['extra']['admin'],
);
$form['jquery_ui'] = array(
'#type' => 'fieldset',
'#title' => t('jQuery UI enhancements'),
'#weight' => 10,
'#description' => t('These settings require !jquery_ui module to be installed and enabled.', array(
'!jquery_ui' => l('jQuery UI', 'http://drupal.org/project/jquery_ui'),
)),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
module_exists('jquery_ui') ? $jquer_ui_disabled = false : ($jquer_ui_disabled = true);
$form['jquery_ui']['draggable'] = array(
'#type' => 'checkbox',
'#disabled' => $jquer_ui_disabled,
'#title' => t('Make Better Messages draggable'),
'#default_value' => $settings['jquery_ui']['draggable'],
);
$form['jquery_ui']['resizable'] = array(
'#type' => 'checkbox',
'#disabled' => $jquer_ui_disabled,
'#title' => t('Make Better Messages resizable'),
'#default_value' => $settings['jquery_ui']['resizable'],
);
$form['buttons']['submit'] = array(
'#type' => 'submit',
'#value' => t('Save configuration'),
);
$form['#theme'] = 'system_settings_form';
$form['#submit'][] = 'better_messages_admin_submit';
return $form;
}