Site users
Pollfield
Installation
Download the file from the project page and extract it into appropriate folder in your Drupal installation, most often under sites/all/modules/.
Enable the module under Modules page on your site. The Pollfield module requires CCK, so ensure you have CCK enabled first.
Setting up a Pollfield field
You need to create the Pollfield field in a content type where you want Pollfield functionality to appear, just as you would with any other CCK field.
Common content types where Pollfield functionality is used are Story and Forum topic. The advantage of Story with Pollfield over regular Poll content type is you can add text (Body field) to explain your poll as necessary.
Under Manage fields tab of the chosen content type fill in the New field form. For Type of data choose Pollfield, Form element to edit the data will automatically display Pollfield as the only choice.
Term Fields - define fields for taxonomy terms
This module enables you to add custom fields to the taxonomy terms of vocabularies via the web interface.
Summary - Why would I need 'term fields' ?
Drupal provides only title & description fields to terms & if you wish to have more fields to the terms forms you can make use of this module to define custom fields.
Module page: Term Fields
Flickr ImageField
Flickr Imagefield depends upon and enhances ImageField. You must first know how to use ImageField in order to use Flickr ImageField. It also uses the settings from the Flickr module so this module is required as well.
Flickr setup
This module modifies the administration page of the Flickr module, providing help on how to get the required token that is needed for write access for your Flickr API key.
ImageField designation of Flickr upload
After setting up Flickr and creating your typical ImageField through CCK, you will notice a new checkbox while configuring your CCK ImageField in the Global settings, just above the Required checkbox. This checkbox will only be enabled if you have filled out your Flickr API information. 
After enabling this checkbox your images will be uploaded to Flickr upon submission of new content that utilizes this field.
Preventing contact spam e-mails
It is important to note that Drupal core and it's Contact module do not provide any kind of spam prevention and could open up your site to lots of spam e-mail attemps if anonymous users can use the contact forms.
The good news is there are lots of good spam-prevention modules that easily integrate and protect the contact forms and other forms (like comments, nodes, etc).
Confirmation Page Usage of Form Components or Variables
It should be easier to format the confirmation page and capture form entries. Ideally, you would have access to all the form variables, and you could do this in a confirmation-page.tpl.php as well as in the confirmation page window under [webform]:Edit:Configuration. It took me a long time to find this tip on how to access form variables in confirmation pages.
Here is a very simple example to get you started, that I adapted from the above tip. Permit PHP code in your format and insert the following in the confirmation window of your [webform]:Edit:Configuration.
<?php
include_once(drupal_get_path('module', 'webform') .'/webform_submissions.inc');
$nid = arg(1); // need to hard-code nid if this is a custom page
$sid = $_GET['sid'];
$submission = webform_get_submission($nid, $sid);
$first_name = $submission->data[6]['value'][0];
$last_name = $submission->data[7]['value'][0];
$thanks = $first_name . " " . $last_name;
?>
<h2>Thank you <?php print $thanks ?>... Your registration has been sent.</h2>Utility
The Utility module is a grouping of commonly-needed utilities that are simple to code, everyone wants, but nobody actually codes them.
Right now, we have the following features:
- Collapse the module page's fieldsets.
- This utility automatically collapses fieldsets on the admin/build/modules page. This speeds up the enabling or disabling of modules, since only the set of modules you're interested in can be expanded for editing. Why wade through all your modules every single time you go to this page? Collapse them!
There is also a counter for each fieldset that numbers every module in that group and reports on how many are enabled. Example: Core - optional [9] of [23]
- Module Weight
- This utility allows you to change module weights without having to make the change directly in the database. Very helpful for development or modules that require to be run in specific order.
- Permissions Fieldset Manager
- Similar to the System Modules above, except this encloses the permissions (admin/user/permissions) for each module in a fieldset. Those may either be all collapsed/expanded, or individually.
- Type Defaults
