function print_main_settings in Printer, email and PDF versions 5.3
Same name and namespace in other branches
- 5.4 print.admin.inc \print_main_settings()
- 5 print.module \print_main_settings()
- 5.2 print.module \print_main_settings()
- 6 print.admin.inc \print_main_settings()
- 7.2 print.admin.inc \print_main_settings()
- 7 print.admin.inc \print_main_settings()
- 5.x print.admin.inc \print_main_settings()
Menu callback for the Printer-friendly pages module settings form.
1 string reference to 'print_main_settings'
- print_menu in ./
print.module - Implementation of hook_menu().
File
- ./
print.admin.inc, line 16 - Contains the administrative functions of the PF module.
Code
function print_main_settings() {
$form['settings'] = array(
'#type' => 'fieldset',
'#title' => t('Common Settings'),
);
$form['settings']['print_css'] = array(
'#type' => 'textfield',
'#title' => t('Stylesheet URL'),
'#default_value' => variable_get('print_css', PRINT_CSS_DEFAULT),
'#size' => 60,
'#maxlength' => 64,
'#description' => t('The URL to your custom print cascading stylesheet, if any. When none is specified, the default module CSS file is used.') . '<br />' . t('Macros: %b (base path: "%base"), %t (path to theme: "%theme")', array(
'%base' => base_path(),
'%theme' => path_to_theme(),
)),
);
$form['settings']['print_urls'] = array(
'#type' => 'checkbox',
'#title' => t('Printer-friendly URLs list'),
'#default_value' => variable_get('print_urls', PRINT_URLS_DEFAULT),
'#description' => t('If set, a list of the destination URLs for the page links will be displayed at the bottom of the page.'),
);
$form['settings']['print_comments'] = array(
'#type' => 'checkbox',
'#title' => t('Include comments in printer-friendly version'),
'#default_value' => variable_get('print_comments', PRINT_COMMENTS_DEFAULT),
'#description' => t('When this option is active, user comments are also included in the printer-friendly version. Requires the comment module.'),
);
$form['settings']['print_newwindow'] = array(
'#type' => 'radios',
'#title' => t('New window method'),
'#options' => array(
t('Use HTML target (does not validate as XHTML Strict)'),
t('Use Javascript (requires browser support)'),
),
'#default_value' => variable_get('print_newwindow', PRINT_NEWWINDOW_DEFAULT),
'#description' => t('Choose the method used to open pages in a new window/tab.'),
);
$form['settings']['logo'] = array(
'#type' => 'fieldset',
'#title' => t('Logo options'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['settings']['logo']['print_logo_options'] = array(
'#type' => 'radios',
'#title' => t('Logo type'),
'#options' => array(
t('None (Disabled)'),
t("Current theme's logo"),
t('User-specified'),
),
'#default_value' => variable_get('print_logo_options', PRINT_LOGO_OPTIONS_DEFAULT),
'#description' => t("Select the type of logo to display on the printer-friendly version. In case of a user-specified location, insert the path or URL below."),
);
$form['settings']['logo']['print_logo_url'] = array(
'#type' => 'textfield',
'#title' => t('Logo URL'),
'#default_value' => variable_get('print_logo_url', PRINT_LOGO_URL_DEFAULT),
'#size' => 60,
'#maxlength' => 250,
);
$form['settings']['logo']['print_logo_upload'] = array(
'#type' => 'file',
'#title' => t('Upload logo'),
'#size' => 60,
'#maxlength' => 250,
'#description' => t("If you don't have direct file access to the server, use this field to upload your logo."),
);
$form['settings']['footer'] = array(
'#type' => 'fieldset',
'#title' => t('Footer options'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['settings']['footer']['print_footer_options'] = array(
'#type' => 'radios',
'#title' => t('Footer type'),
'#options' => array(
t('None (Disabled)'),
t("Site's footer"),
t('User-specified'),
),
'#default_value' => variable_get('print_footer_options', PRINT_FOOTER_OPTIONS_DEFAULT),
'#description' => t("Select the type of footer to display on the printer-friendly version. In case of a user-specified footer, insert it below."),
);
$form['settings']['footer']['print_footer_user'] = array(
'#type' => 'textfield',
'#title' => t('User-specified'),
'#default_value' => variable_get('print_footer_user', PRINT_FOOTER_USER_DEFAULT),
'#size' => 60,
'#maxlength' => 250,
);
$form['settings']['print_sourceurl_settings'] = array(
'#type' => 'fieldset',
'#title' => t('Source URL'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['settings']['print_sourceurl_settings']['print_sourceurl_enabled'] = array(
'#type' => 'checkbox',
'#title' => t('Display source URL'),
'#default_value' => variable_get('print_sourceurl_enabled', PRINT_SOURCEURL_ENABLED_DEFAULT),
'#description' => t('When this option is selected, the URL for the original page will be displayed at the bottom of the printer-friendly version.'),
);
$form['settings']['print_sourceurl_settings']['print_sourceurl_date'] = array(
'#type' => 'checkbox',
'#title' => t('Add current time/date to the source URL'),
'#default_value' => variable_get('print_sourceurl_date', PRINT_SOURCEURL_DATE_DEFAULT),
'#description' => t('Display the current date and time in the Source URL line.'),
);
$form['settings']['print_sourceurl_settings']['print_sourceurl_forcenode'] = array(
'#type' => 'checkbox',
'#title' => t('Force use of node ID in source URL'),
'#default_value' => variable_get('print_sourceurl_forcenode', PRINT_SOURCEURL_FORCENODE_DEFAULT),
'#description' => t("Drupal will attempt to use the page's defined alias in case there is one. To force the use of the fixed URL, activate this option."),
);
$form['#attributes'] = array(
'enctype' => 'multipart/form-data',
);
$form['#validate']['_print_main_settings_validate'] = array();
return system_settings_form($form);
}