Active
Project:
Title
Version:
7.x-1.0-alpha7
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
16 May 2013 at 21:16 UTC
Updated:
26 Feb 2015 at 13:46 UTC
Jump to comment: Most recent
Features is not currently supported correct?
Tried to export a content type that was using Title module and the configuration settings were not passed on.
Is this a miss-step of the building of my feature or is it not currently supported?
Thanks
Comments
Comment #1
plachThis is not supported at the moement.
Comment #2
Andy_D commentedAny progress on this? It's just cost me a day of dev time not having it.
Comment #3
damienmckenna@Andy_D: you could probably spend half a day to write a patch with the functionality.
Comment #4
dubs commented@Andy_D - think of all the time you've saved thanks to people like @plach and the open source community who provide this code and support free of charge.
Comment #5
planctus commentedYou can enable the field replacement programmatically using this function:
title_field_replacement_toggle($entity_type, $bundle, $legacy_field);
Do it during the installation of your feature (hook_install(), hook_enable(), whatever...) and you'll get the title replaced.
Thanks for the module, btw.
Da.