It would be great if thos module could be integrated with http://drupal.org/project/remote_file so images could be sent to cck

Comments

nedim.hadzimahmutovic’s picture

Would it be possible to import the image to CCK? $node->field_image = "Only local images are allowed.<";

This is supported by http://drupal.org/project/import_html

'

Import to CCK

The base functionality supports placing found content into the $node->body field, not naturally into any arbitrary CCK fields, but this is also possible.

If you have a CCK node with (eg) fields:

field_text, field_byline, field_image

and your input pages are nice and semantically tagged, eg

the title
Only local images are allowed.

By me

the content html etc

A mapping from HTML ids to CCK fields will be done automatically, and the content should just fall into place.

$node->title = "the title";
$node->field_image = "Only local images are allowed.<";
$node->field_byline = "By me";
$node->field_text = "the content html etc";

'

nedim.hadzimahmutovic’s picture

The title for this issue should be 'Support for CCK' :)