This forum is for module development and code related questions, not general module support. For general support, use the Post installation forum.

Worldpay.module updated for Drupal 4.7

Hi Guys,

Just in case anyone is looking for a Drupal 4.7 version of the WORLDPAY.MODULE...an updated version of the worldpay.module for Drupal 4.7 is available in my sandbox. (There seems to be something wrong/new with the Contributions system on Drupal.org - I can't update the module as normal). Click to download the updated version.

Mailman Mailing List

Hi;

My mailman mailing list got error.
May be i didn't understand the installing..

How to-do this with Forms API

I'm building a Wordpress-to-Drupal migration module and want to have user interface like this: the first tab (path 'admin/wp2drupal') would contain configuration form (connection settings, character encoding etc.) and the second tab (path 'admin/wp2drupal/results') will inform the end user about the migration process - what went alright, what went wrong etc.

In the wp2drupal_menu hook, I construct paths like this:

    // Top-level item
    $items[] = array(
      'path' => 'admin/wp2drupal',
      'title' => t('Import from Wordpress'),
      'callback' => 'wp2drupal_settings',
      'access' => user_access('import from wordpress')
    );
    
    // Tabs
    $items[] = array(
      'path' => 'admin/wp2drupal/settings',
      'title' => t('Settings'),
      'access' => user_access('import from wordpress'),
      'type' => MENU_DEFAULT_LOCAL_TASK
    );

    $items[] = array(
      'path' => 'admin/wp2drupal/results',
      'title' => t('Results'),
      'callback' => 'wp2drupal_results',
      'access' => user_access('import from wordpress'),
      'type' => MENU_LOCAL_TASK
    );

In the wp2drupal_settings callback function, I contruct quite a large form and submits it to admin/wp2drupal/results using

$form['#action'] = url('admin/wp2drupal/results');

Then, I created sumbit-handling function like this:

<?php
function wp2drupal_submit($form_id, $form_values) {

Want to merge free tagging & list forms for terms.

Currently developing module called "label". It povides per-user term
access. Label vocabularies can be used e.g. for personal nodes
categorization, for private message nodes etc.
The problem is that I want to allow user to enter new labels (terms)
using both list & free tagging fields. Taxonomy allows me to have
free-tagging or (not and) normal vocabularies.

I have decided to edit taxonomy module to support both of them.

The problem is that form elements are constructed in such a way:

What's the best way to handle auto-responders using a webform?

Can I have more than one email for a webform? Basically I want an autoresponder for an "info" email and I dont want that emailed to be used by the company to talk to people bc it would mean the customer would get an auto response every time they replied.

If I set up a forward from info@something to info2@something and had an autoresponder for info@something--would that accomplish what I'm after? I suppose a bunch of you have set up auto-responders, I just want to know what the best strategy is.

rss subscriptions...

I'm trying to find some functionality that seems that it would be a common request among community sites.

I'd like for users to be able to "subscribe" to other users (and groups) blogs/posts/nodes...

I first looked at the favorite nodes module, and that gets me half of the way there, even though I, being a stupid novice coder, couldn't figure out a snippet to provide a users favorites in their own profile.

Pages

Subscribe with RSS Subscribe to RSS - Module development and code questions