CCK Mixer
Categories
Component ID
1803404
Component name
CCK Mixer
Component type
module
Maintenance status
Development status
Component security advisory coverage
not-covered
Component created
Component changed
Component body
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
