I am trying to add a content block to my page template via ECB. I want it to be a sortable list, which retrieves its values from the Link Mgr module. I tried making a UDT, tried assigning the values from the LinkMgr call to a value and then passing it on to the ECB content block call, but it always remains empty.
When I use "print_r" on the var I create (or just call the UDT), it produces the comma separated list I want, but somehow ECB doesn't like it. Anyone have any thougts on this?
I know I could use Advanced Content for this, but this is a too heavy-weight module for what I'm trying to do in my opinion.
An example:
Code: Select all
{content_module module="ECB" field="sortablelist" block="testsortablelist" label="Test lijstsortering" values=test1=Test 1,test2=Test 2}Code: Select all
{assign var='list' value="test1=Test 1,test2=Test 2"}
{content_module module="ECB" field="sortablelist" block="testsortablelist" label="Test lijstsortering" values=$list}

