Skip to main content

Home/ Drupal for Developers/ Group items tagged node

Rss Feed Group items tagged

Scott Blackburn

sliced bread snippets: Dynamic main page content without using extra modules...or putti... - 0 views

  •  
    snippets
Scott Blackburn

Best Drupal CDN module? | groups.drupal.org - 4 views

  •  
    This is the best and most up-to-date thread concerning CDN integration that I've found. The discussion contains a few examples of what others are doing for their projects.
Leandro Ardissone

Creating a Compound Field Module for CCK in Drupal 6.x, from Poplar ProductivityWare Ar... - 8 views

  •  
    Create a new CCK field.
  • ...1 more comment...
  •  
    This is a nice foray into defining your own custom field types in CCK. Thanks for sharing. However, as regards "multi-groups" in CCK, I've used CCK version 6.x-3.x-dev and it's worth a look.
  •  
    Oh, really? I'm just needing to use multi-groups. Well, multiple-fields field group, or whatever. For example a recipe with ingredients where you can enter: amount (textfield), unit (option field), ingredient name (textfield). Thanks.
  •  
    when your ready to go to drupal 7 here is the article for that http://www.phase2technology.com/node/1495
Daniel Gregoire

Handling File Uploads | drupal.org - 1 views

  •  
    Extra coding needed to handle file uploads outside of FAPI definitions.
Daniel Gregoire

Programatic CCK Now Possible! | groups.drupal.org - 2 views

  • <?phpfunction mymodule_enable() {     // Get the files content   $filename = drupal_get_path('module','mymodule') . "/mymodule.cck";  $content = implode ('', file ($filename));      // Build form state    $form_state = array(       'values' => array(            'type_name' => '<create>',            'macro' => $content,      ),     );    // Put it in there     drupal_execute("content_copy_import_form", $form_state);}?>
  •  
    Start with comment 54181 - "This works for me in Drupal 6" and read along.
Daniel Gregoire

Batch API | drupal.org - 0 views

  •  
    Another Batch API example, handbook
Daniel Gregoire

file_save_upload problem saving into destination folder | drupal.org - 0 views

  •  
    Simple, clean example of adding a file field and saving the file permanently.
« First ‹ Previous 121 - 140 of 174 Next › Last »
Showing 20 items per page