function swiftmailer_admin_default_form in Swift Mailer 7
Form builder; the default form.
See also
swiftmailer_admin_default_form_validate()
swiftmailer_admin_default_form_submit()
1 string reference to 'swiftmailer_admin_default_form'
- swiftmailer_menu in ./
swiftmailer.module - Implements hook_menu().
File
- includes/
pages/ swiftmailer_admin_default.inc, line 14 - An administration page which allows for configuration of the Swift Mailer library location.
Code
function swiftmailer_admin_default_form($form, &$form_state) {
// Include helper functions.
require_once dirname(dirname(__FILE__)) . '/helpers/utilities.inc';
$form['#tree'] = TRUE;
$form['description'] = array(
'#markup' => '<p>' . t('The Swift Mailer module is designed to replace the default mail system that is shipped
with Drupal. The initial configuration of this is done through the mailsystem module. Swift Mailer allows you
to choose how e-mails should be sent. To read more about how this module works, please have a look at the
!documentation.', array(
'!documentation' => l(t('Swift Mailer documentation'), 'http://swiftmailer.org/docs/introduction.html'),
)) . '</p>',
);
$form['library'] = array(
'#type' => 'fieldset',
'#title' => t('Library location'),
'#description' => '<p>' . t('The Swift Mailer library is required for this module
to work. You are advised to keep your libraries in the
<em>sites/all/libraries</em> directory. The Swift Mailer
library can be downloaded from the !website.', array(
'!website' => l(t('Swift Mailer website'), 'http://swiftmailer.org/'),
)) . '</p>',
);
$class = '';
$path = variable_get('swiftmailer_path', SWIFTMAILER_VARIABLE_PATH_DEFAULT);
if (!swiftmailer_validate_library($path)) {
// Attempt to automatically locate the Swift Mailer library.
$alternatives = file_scan_directory('sites/all/libraries', '/Swift.php/');
if (empty($alternatives)) {
$class = 'error';
$form['library']['message'] = array(
'#markup' => '<p>' . t('The Swift Mailer library could not be found in the path provided below.') . '</p>',
);
}
else {
$path = reset($alternatives)->uri;
$path = preg_replace('/\\/lib\\/classes\\/Swift.php/', '', $path);
drupal_set_message(t("The SwiftMailer library was found in '@path'.", array(
'@path' => $path,
)), 'status');
variable_set('swiftmailer_path', $path);
}
}
$form['library']['path'] = array(
'#type' => 'textfield',
'#title' => t('Library path'),
'#description' => t('The path to the Swift Mailer directory (e.g. sites/all/libraries/swiftmailer)'),
'#required' => TRUE,
'#default_value' => $path,
'#attributes' => array(
'class' => array(
$class,
),
),
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Save'),
);
return $form;
}