Skip to content
print.admin.inc 12.1 KiB
Newer Older
João Ventura's avatar
João Ventura committed
<?php

João Ventura's avatar
João Ventura committed
/**
 * @file
 * Contains the administrative functions of the PF module.
 *
 * This file is included by the core PF module, and includes the
 * settings form.
João Ventura's avatar
João Ventura committed

/**
João Ventura's avatar
João Ventura committed
 * Form constructor for the Printer-friendly pages module settings form.
João Ventura's avatar
João Ventura committed
 *
 * @ingroup forms
João Ventura's avatar
João Ventura committed
 */
function print_main_settings() {
  $print_css = variable_get('print_css', PRINT_CSS_DEFAULT);
  // Check that the stylesheet path is indeed valid and relative to base_path()
  if (!empty($print_css) && empty($_POST)) {
    $css_path = DRUPAL_ROOT . '/' . strtr($print_css, array(
      '%t' => drupal_get_path('theme', variable_get('theme_default', 'garland')),
    ));
    if (!is_file($css_path) || !is_readable($css_path)) {
      drupal_set_message(t("File %file is not readable by the web server.", array('%file' => $css_path)), 'warning', FALSE);
    }
  }

  $form['settings'] = array(
    '#type' => 'fieldset',
João Ventura's avatar
João Ventura committed
    '#title' => t('Common settings'),
  $form['settings']['print_css'] = array(
João Ventura's avatar
João Ventura committed
    '#type' => 'textfield',
João Ventura's avatar
João Ventura committed
    '#title' => t('Custom stylesheet'),
    '#default_value' => $print_css,
João Ventura's avatar
João Ventura committed
    '#size' => 60,
    '#description' => t('The path to your custom print cascading stylesheet, if any. The path provided must be relative to the base path. When none is specified, the default module CSS file is used.') . '<br />' .
      t('Macros: %t (path to theme: "%theme")', array(
        '%theme' => drupal_get_path('theme', variable_get('theme_default', 'bartik')),
      )) . '<br />' .
      t('Requires the <em>Administer site configuration</em> permission.'),
    '#disabled' => !user_access('administer site configuration'),
João Ventura's avatar
João Ventura committed
  );

  $form['settings']['print_keep_theme_css'] = array(
    '#type' => 'checkbox',
    '#title' => t('Keep the current theme CSS'),
    '#default_value' => variable_get('print_keep_theme_css', PRINT_KEEP_THEME_CSS_DEFAULT),
    '#description' => t('If set, the current theme css will still be applied to the printer-friendly versions.'),
  );

  $form['settings']['print_urls'] = array(
João Ventura's avatar
João Ventura committed
    '#type' => 'checkbox',
    '#title' => t('Printer-friendly URLs list'),
    '#default_value' => variable_get('print_urls', PRINT_URLS_DEFAULT),
João Ventura's avatar
João Ventura committed
    '#description' => t('If set, a list of the destination URLs for the page links will be displayed at the bottom of the page.') . '<br />' .
      t('Note that you can enable/disable the URL list for each content type individually from the !url.', array(
        '!url' => l(t('Content Types page'), 'admin/structure/types'),
      )),
João Ventura's avatar
João Ventura committed
  );

  $form['settings']['print_urls_anchors'] = array(
    '#type' => 'checkbox',
    '#title' => t('Include named anchors in printer-friendly URLs list'),
    '#default_value' => variable_get('print_urls_anchors', PRINT_URLS_ANCHORS_DEFAULT),
    '#description' => t('If set, the list of the URLs at the bottom of the page will include anchors links on the same page.'),
  );

  $form['settings']['print_comments'] = array(
João Ventura's avatar
João Ventura committed
    '#type' => 'checkbox',
    '#title' => t('Include comments in printer-friendly version'),
    '#default_value' => variable_get('print_comments', PRINT_COMMENTS_DEFAULT),
João Ventura's avatar
João Ventura committed
    '#description' => t('When this option is active, user comments are also included in the printer-friendly version. Requires the comment module.'),
  );

  $form['settings']['print_node_router'] = array(
    '#type' => 'checkbox',
    '#title' => t('Consult menu router for node display handler'),
    '#default_value' => variable_get('print_node_router', PRINT_NODE_ROUTER_DEFAULT),
    '#description' => t('When this option is active, print module will check the menu router for the handler to consult for page contents at node/%node.'),
  );

  $form['settings']['print_newwindow'] = array(
João Ventura's avatar
João Ventura committed
    '#type' => 'radios',
    '#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.'),
João Ventura's avatar
João Ventura committed
  );

  $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,
João Ventura's avatar
João Ventura committed
  );

  $form['settings']['print_sourceurl_settings']['print_sourceurl_enabled'] = array(
João Ventura's avatar
João Ventura committed
    '#type' => 'checkbox',
    '#title' => t('Display source URL'),
    '#default_value' => variable_get('print_sourceurl_enabled', PRINT_SOURCEURL_ENABLED_DEFAULT),
João Ventura's avatar
João Ventura committed
    '#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(
João Ventura's avatar
João Ventura committed
    '#type' => 'checkbox',
    '#title' => t('Add current time/date to the source URL'),
    '#default_value' => variable_get('print_sourceurl_date', PRINT_SOURCEURL_DATE_DEFAULT),
João Ventura's avatar
João Ventura committed
    '#description' => t('Display the current date and time in the Source URL line.'),
  );

  $form['settings']['print_sourceurl_settings']['print_sourceurl_forcenode'] = array(
João Ventura's avatar
João Ventura committed
    '#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."),
João Ventura's avatar
João Ventura committed
  );

João Ventura's avatar
João Ventura committed
  $form['#attributes'] = array('enctype' => 'multipart/form-data');
  $form['#validate'][] = '_print_main_settings_validate';

João Ventura's avatar
João Ventura committed
  return system_settings_form($form);
}

João Ventura's avatar
João Ventura committed
 * Form validation handler for print_main_settings().
 */
function _print_main_settings_validate($form, &$form_state) {
  global $base_root;
  // Check for a new uploaded logo, and use that instead.
  if ($file = file_save_upload('print_logo_upload', array('file_validate_is_image' => array()))) {
    // The image was saved using file_save_upload() and was added to the
    // files table as a temporary file. We'll make a copy and let the garbage
    // collector delete the original upload.
    if ($filename = file_unmanaged_copy($file->uri)) {
      /** @var DrupalStreamWrapperInterface $wrapper */
      $wrapper = file_stream_wrapper_get_instance_by_uri($filename);

      $form_state['values']['print_logo_options'] = 2;
      $form_state['values']['print_logo_url'] = str_replace($base_root, '', $wrapper->getExternalUrl());
João Ventura's avatar
João Ventura committed
 * Form constructor for the Printer-friendly pages HTML settings form.
João Ventura's avatar
João Ventura committed
function print_html_settings() {
João Ventura's avatar
João Ventura committed
  $link = print_print_link();

  $form['settings'] = array(
    '#type' => 'fieldset',
    '#title' => t('Web page options'),
  );
João Ventura's avatar
João Ventura committed

  $form['settings']['print_html_new_window'] = array(
    '#type' => 'checkbox',
    '#title' => t('Open the printer-friendly version in a new window'),
    '#default_value' => variable_get('print_html_new_window', PRINT_HTML_NEW_WINDOW_DEFAULT),
    '#description' => t('Setting this option will make the printer-friendly version open in a new window/tab.'),
  );

  $form['settings']['print_html_sendtoprinter'] = array(
João Ventura's avatar
João Ventura committed
    '#type' => 'checkbox',
    '#title' => t('Send to printer'),
    '#default_value' => variable_get('print_html_sendtoprinter', PRINT_HTML_SENDTOPRINTER_DEFAULT),
    '#description' => t("Automatically calls the browser's print function when the printer-friendly version is displayed."),
João Ventura's avatar
João Ventura committed
  );

  $form['settings']['print_html_windowclose'] = array(
    '#type' => 'checkbox',
    '#title' => t('Close window after sending to printer'),
    '#default_value' => variable_get('print_html_windowclose', PRINT_HTML_WINDOWCLOSE_DEFAULT),
    '#description' => t("When the above options are enabled, this option will close the window after its contents are printed."),
  );

João Ventura's avatar
João Ventura committed
  $form['settings']['print_html_display_sys_urllist'] = array(
    '#type' => 'checkbox',
    '#title' => t('Printer-friendly URLs list in system pages'),
João Ventura's avatar
João Ventura committed
    '#default_value' => variable_get('print_html_display_sys_urllist', PRINT_TYPE_SYS_URLLIST_DEFAULT),
    '#description' => t('Enabling this option will display a list of printer-friendly destination URLs at the bottom of the page.'),
  );

  $form['settings']['print_robots_settings'] = array(
João Ventura's avatar
João Ventura committed
    '#type' => 'fieldset',
    '#title' => t('Robots META tags'),
    '#collapsible' => TRUE,
    '#collapsed' => FALSE,
João Ventura's avatar
João Ventura committed
  );

  $form['settings']['print_robots_settings']['print_robots_noindex'] = array(
João Ventura's avatar
João Ventura committed
    '#type' => 'checkbox',
    '#title' => t('Add noindex'),
    '#default_value' => variable_get('print_robots_noindex', PRINT_ROBOTS_NOINDEX_DEFAULT),
    '#description' => t('Instruct robots to not index printer-friendly pages. Recommended for good search engine karma.'),
João Ventura's avatar
João Ventura committed
  );

  $form['settings']['print_robots_settings']['print_robots_nofollow'] = array(
João Ventura's avatar
João Ventura committed
    '#type' => 'checkbox',
    '#title' => t('Add nofollow'),
    '#default_value' => variable_get('print_robots_nofollow', PRINT_ROBOTS_NOFOLLOW_DEFAULT),
    '#description' => t('Instruct robots to not follow outgoing links on printer-friendly pages.'),
João Ventura's avatar
João Ventura committed
  );

  $form['settings']['print_robots_settings']['print_robots_noarchive'] = array(
João Ventura's avatar
João Ventura committed
    '#type' => 'checkbox',
    '#title' => t('Add noarchive'),
    '#default_value' => variable_get('print_robots_noarchive', PRINT_ROBOTS_NOARCHIVE_DEFAULT),
    '#description' => t('Non-standard tag to instruct search engines to not show a "Cached" link for your printer-friendly pages. Recognized by Googlebot.'),
João Ventura's avatar
João Ventura committed
  );

João Ventura's avatar
João Ventura committed
  $form['settings']['link_text'] = array(
    '#type' => 'fieldset',
    '#title' => t('Custom link text'),
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
  );
  $form['settings']['link_text']['print_html_link_text_enabled'] = array(
    '#type' => 'checkbox',
    '#title' => t('Enable custom link text'),
    '#default_value' => variable_get('print_html_link_text_enabled', PRINT_TYPE_LINK_TEXT_ENABLED_DEFAULT),
  );
  $form['settings']['link_text']['print_html_link_text'] = array(
    '#type' => 'textfield',
    '#default_value' => variable_get('print_html_link_text', $link['text']),
    '#description' => t('Text used in the link to the printer-friendly version.'),
  );

João Ventura's avatar
João Ventura committed
  return system_settings_form($form);
}