The module defaults to being disabled for all content and requires the user to manually enable the module for the desired entity type bundles. This process is described on the module's homepage:

Version 7.x-1.3

...you need to set publish content as being enabled or disabled for each content type. If you have not specified the content types that publish content should be used with ... to set publish content to work with a content type, goto structure -> content types then edit each in turn, ticking the relevant box under the publishing options.

This change should be reflected in the code and thereafter be detected by the feature module if enabled. This allows for easy site development and portability. At the moment the change described above is not reflected in the code in a way that the feature can detect and apply.

Comments

gl2748 created an issue. See original summary.

gl2748’s picture

Status: Active » Closed (works as designed)

Works as designed. Using strongarm to target the variable in:
if (variable_get('publishcontent_' . $node->type, FALSE)) {
i.e.
In file: your_feature_name.info
add:
features[variable][] = publishcontent_yourentitybundletypename
This allows you to add this variable status in the database to the code and in turn your feature for export.