Thursday 29 January 2004 5:49:03 am
I think this might help you: In your template write {$object_you_just_fetched|attribute(show)} Will show you all the attributes available for that object, for example if you saw something like
data_map array >name string then your object would have attributes called data_map (an array) and name (a string inside data_map) so you could call name with: {$your_object_name.data_map.name} see http://www.ez.no/ez_publish/documentation/customization/custom_design/template_variables_set_by_ezpublish there's more documentation on this as well, I'd scan through the "building an ezpublish site tutorial" Regards. ~James~
|