It would be great if thos module could be integrated with http://drupal.org/project/remote_file so images could be sent to cck
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
Comment #1
nedim.hadzimahmutovic commentedWould it be possible to import the image to CCK? $node->field_image = "
<";
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 titleBy me
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 = "
$node->field_byline = "By me";
$node->field_text = "the content html etc";
'
Comment #2
nedim.hadzimahmutovic commentedThe title for this issue should be 'Support for CCK' :)