Share » Forums » Developer » How to add a graphic showing required...

How to add a graphic showing required fields on the entry screens?

How to add a graphic showing required fields on the entry screens?

Thursday 03 April 2003 3:15:59 am - 1 reply

Modified on Tuesday 08 April 2003 3:55:26 am by Stuart Fenton

Author Message

Jan Borsodi

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

You must be logged in to post messages in this topic!

36 542 Users on board!

Forums menu