ECK Properties Extras

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

This modules enables some extra property fields for Entities using the ECK module.

  • blob
  • hidden
  • json

Each of the types above further enhance the entity construction kit with some ways of storing extra information with an entity you would otherwise have to do via a field. For those of us who would like to have those fields be capable of being properties and not fields, this is the module of choice.

multistep_form

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

The mulitstep_form module is a module that aims to ease the integration of multiple forms, into a multi-step form process. This process should be trivial for the downstream developer to implement. The aim, is to provide an interface where the the following code is all that's required to create a multi-step form from multiple sources:

function mymodule_form() {
  $forms = array(
    'other_module_form',
    'another_module_form',
    'yet_another_module_form',
  );

  return multistep_form_create($forms);
}