You are here

function print_update_7202 in Printer, email and PDF versions 7.2

Enable block and help area links.

File

./print.install, line 198
Install, update and uninstall functions for the print module.

Code

function print_update_7202(&$sandbox) {
  $link_pos = variable_get('print_html_link_pos', drupal_json_decode('{ "link": "link", "block": "block", "help": "help" }'));
  $link_pos['block'] = 'block';
  $link_pos['help'] = 'help';
  variable_set('print_html_link_pos', $link_pos);
}