Forums / Setup & design / url single related object

"Please Note:
  • At the specific request of Ibexa we are changing this projects name to "Exponential" or "Exponential (CMS)" effective as of August, 11th 2025.
  • This project is not associated with the original eZ Publish software or its original developer, eZ Systems or Ibexa".

url single related object

Author Message

Robert Malevic

Thursday 22 May 2008 2:44:10 pm

As a newbe I just started with related objects. I added some object relation attributes (single relation) to a content class. Trying to fetch different atrributes works in this code:

 

{if $node.data_map.item_4.has_content}
     <h4><a href="WHAT TO INSERT TO GET THE URL OF THE RELATED OBJECT?">
     <strong>{attribute_view_gui 
                   attribute=$node.object.data_map.item_4.content.data_map.title}
    </strong>
     <span>{attribute_view_gui 
                 attribute=$node.object.data_map.item_4.content.data_map.sub_title}
     </span></a></h4>
							
    <p>
        {attribute_view_gui
                attribute=$node.object.data_map.item_4.content.data_map.intro}
    </p>
{/if}  
 

Somehow I am not able to fetch the url of the related object. What do I need to insert to get the url?

Thanks for helping!

Gurudutt Verma

Thursday 22 May 2008 11:30:27 pm

Hi Robert,

Welcome to eZ World :-)

Try to have a look in this template
design/standard/templates/content/datatype/view/ezobjectrelation.tpl

OR Try
{$node.object.data_map.item_4.content|attribute(show)}

This should give you url of related object.
{$node.object.data_map.item_4.content.main_node.url_alias}

Robert Malevic

Friday 23 May 2008 11:57:55 am

Hi Gurudutt,

{$node.object.data_map.item_4.content.main_node.url_alias} was the solution.

Thanks for your support!