Experimental project

This is a sandbox project, which contains experimental code for developer use only.

Extension of standard CCK functionality.

It adds functionality for selected content types to have various CCK fields in mixed order & have easy UI for managing it.

Then on template you can get fields in order using code:

$cckMixerFields = cck_mixer_get_fields($node);
for($cckMixerIndex = 0; 
$cckMixerIndex < count($cckMixerFields); 
$cckMixerIndex++)
{
	$fieldKey = $cckMixerFields[$cckMixerIndex]['key'];
	$fieldValue = $cckMixerFields[$cckMixerIndex]['value'];
}

Project sponsored by Design & Creative studio Asketic Labs

Project information