ImageField

Component type

module

Maintenance status

Development status

Downloads

1014120

Component created

Component changed

ImageField provides an image upload field for CCK. ImageField is a CCK-based alternative to the legacy Image project. It boasts features such as multiple images per node, resolution restrictions, default images, and extensive Views support.

ImageField does not provide a built-in thumbnail solution, but complements the incredibly powerful thumbnail generation module ImageCache.

ImageField related projects

Semantic Search - Faceted Search and Semantic Web

Component type

module

Downloads

1372

Component created

Component changed

Semantic Search is an alpha quality faceted search front end for Drupal using an RDF-store on the back end. The code is overdeveloped and un-drupalike in many places. But this module contains many proof of concepts - so at least check out the screenshots.

Combines several experimental features:

* uses an RDF store as a search index. The built in store is easy to use. Other RDF stores require Java and configuration.
* dynamically creates default search interfaces, for many searches per site, configurable via admin interfaces.

Matrix field

Component type

module

Maintenance status

Development status

Downloads

25713

Component created

Component changed

This module provides a field type for CCK in D6 and Fields in D7. It provides a table with fields in each cell.

This module is no longer under active development, but there are a number of other similar modules which may provide the same functionality:

Phone

Component type

module

Maintenance status

Development status

Downloads

233832

Component created

Component changed

This module provides a phone field type

You should probably consider using https://www.drupal.org/project/telephone instead. Eventually, the validation and formatting features of this module will be moved into a new module that extends the telephone module in both D7 and D8.

Social Insurance Number (CCK)

Component type

module

Maintenance status

Development status

Downloads

4926

Component created

Component changed

This module provides a Social Insurance Numbers field type for CCK.

Features

  • Validation of Social Insurance Numbers: support for with French, Canadian, and US Social Insurance Numbers
  • Formating of Social Insurance Numbers
  • Sin CCK fields can be used as a Token

Prerequisites

The sin.module requires the content.module to be installed.

Installation

To install, copy the sin directory and all its contents to your modules directory.

VotingAPI Field

Component type

module

Downloads

162

Component created

Component changed

Defines a Voting API field type for content.module.

Currently provides 4 types of voting fields:

FeedField

Component type

module

Downloads

4844

Component created

Component changed

A CCK content field to integrate with the Aggregator.
When an entry with this content type is saved, the feed url will be added to the aggregator. (And removed from the aggregator if the entry is deleted.)

Checkall

Component type

module

Maintenance status

Development status

Downloads

22556

Component created

Component changed

This module provides an extension to the builtin checkboxes element that allows developers add "check all" / "toggle" / "uncheck all" actions to them. This is specially useful for checkboxes that have a lot of elements.

Please note that Drupal 6 already has this feature available, but only for checkboxes rendered in tables, such as those used in Administration -> Content management -> Content. Checkboxes rendered elsewhere do not have this feature.

You may need to install this module when required/recommended by another contributed module, and/or you may wish to use it to enhance your own custom modules.

  • For Site Administrators - New option for checkboxes implemented by CCK Widgets

    If you use checkboxes implemented by CCK optionwidgets, node reference, user reference or content taxonomy options, then a new option in the field settings form is available to enable the Checkall feature for those widgets.

  • For Developers - Simple Usage

    To attach the checkall behavior to checkboxes elements, all you need to do is add the '#checkall' property to them. You can do so for your own forms, or you can implement hook_alter_form() to add this property to existing forms. Example:

    $form['foobar'] = array(
      '#type' => 'checkboxes',
      '#options' => $options,
      '#default_value' => $default_value,
      '#checkall' => TRUE,  // <--- this is it ;-)
    );
    

dependantDropdown

Component type

module

Downloads

2166

Component created

Component changed

***
I've drifted out of Drupal development and i would be glad if someone would be able to adopt this orphan module.
***

This modules adds a CCK type which defines a dropdown with a dependant value list upon the value of a different cck field
I.e. (the real need for whiah this module was created)
Two dropdowns
1. Measurement system
2. sizes
It is clear that dropdown 2 should be depenedant on the value of dropdown 1

- Unlike the activeselect module here all the values are configured ahead. There is no requerying the server for the values