Closed (fixed)
Project:
Node to Word
Version:
6.x-1.x-dev
Component:
User interface
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
18 May 2011 at 02:55 UTC
Updated:
6 Dec 2011 at 09:38 UTC
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
Comment #1
steveparks commentedThis 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.