See @TODO in the code:

/**
 * Function for checking if a content type should have a 
 * "Save as Word" link or not.
 * 
 * @param $type
 *  string: content type to be checked
 * 
 * @return
 *  boolean: TRUE if content type should have a link
 */
function node_to_word_enabled($type) {
  // TODO: This needs to link to an admin interface for picking types
  if ($type == 'story') {
    return TRUE;
  }
}

Comments

steveparks’s picture

Status: Active » Closed (fixed)

This has now been done and is available in the 6.x-dev version.

It will be released in 6.x-1.1 when #926530: Update from 6.x-1.0 to 6.x-1.x-dev will break permissions has also been completed.