Friends,

Great module, for sure! I was looking for this simplicity and I think there are lots of drupalers looking for this kind of funcionality.

So I put it on test, of course. And it seems to be a conflict with auto_nodetitle module. Not exactly a conflict or a bug (a made a kick test), but you have NO TITLE at all in the new autocreated nodes. I'm not a PHP developer, so I'm not able to submit a patch (which I would like) for this kind of integration.

One more thing: the cck fields in the new autocreated nodes, they lost their DEFAULTS.

Forgive if I was wrong or very fast in conclusions, but I think this could help you and your partners in the improvements of this very useful module.

Cheers.

Comments

johnnyfofo’s picture

I confirm this, and would also like to see this compatibility. Thanks!

mlsamuelson’s picture

How I resolved this issue in my case:

With the patch in http://drupal.org/node/1181544, one can create a quick little glue module that implements hook_noderefcreate() and handles any field mappings Auto Nodetitle may need... of course if you're doing that, you may not even want/need to bother with Auto Nodetitle. ;)

cthiebault’s picture

Version: 6.x-1.0 » 7.x-1.0-beta3
Status: Active » Needs review

For D7 1.x, patch from http://drupal.org/node/1181544#comment-6146880 works well.
You just need to implements hook_noderefcreate_alter:

function MY_MODULE_noderefcreate_alter(&$newnode, $element, $form_state) {
 }