Friday 11 April 2003 7:26:27 am
Do you mean in the content edit fields? How you access the attributes depends on whether you want a general implementations (ie. looping the attributes) or specific (using attribute names). The first is simply to look at the code in design/standard/templates/content/edit_attribute.tpl, create an override by placing it in design/mydesign/override/templates/content/. For example:
{section name=ContentObjectAttribute loop=$content_attributes sequence=array(bglight,bgdark)}
<div class="block">
<label>{$ContentObjectAttribute:item.contentclass_attribute.name}{section show=$ContentObjectAttribute:item.contentclass_attribute.is_required}*{/section}</label><div class="labelbreak"></div>
<input type="hidden" name="ContentObjectAttribute_id[]" value="{$ContentObjectAttribute:item.id}" />
{attribute_edit_gui attribute=$ContentObjectAttribute:item}
</div> {/section}
The code that matches is: {section show=$ContentObjectAttribute:item.contentclass_attribute.is_required}*{/section}
The second way is to access the attribute trough the data_map array, for instance to get the attribute named name. {section show=$object.data_map.name.contentclass_attribute.is_required}*{/section}
--
Amos
Documentation: http://ez.no/ez_publish/documentation
FAQ: http://ez.no/ez_publish/documentation/faq
|