FooterLink¶
The FooterLink object represents a single link in the footer of the storefront.
classDiagram
direction LR
FooterLink --> footerLink
FooterLink --> Url
class FooterLink{
int id
string title
Url url
int order
bool isPopup
footerLink group
}
class footerLink{
}
class Url{
}
Properties¶
Attribute name | Type | Description |
---|---|---|
id | int |
The unique identifier of the link. |
title | string |
The title of the link. |
url | Url |
The Url object that represents an external or internal url. If the link is associated with a page within the storefront, the direct render an Url object return the relative URL of the page. In other cases, it will be always full external URL. |
order | int |
The order of the link in its group. |
isPopup | bool |
Returns true if the link should be opened in a new window. |
group | FooterGroup |
Reference to the FooterGroup object that represents the group of the link. |