Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Added sort template to navigation request
Browse files Browse the repository at this point in the history
  • Loading branch information
Edwin Jacobs committed Sep 11, 2019
1 parent d684d9f commit 9aa9f23
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Model/Client/Request/ProductNavigationRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,14 @@ public function setTemplateId($templateId)
$this->setParameter('tn_ft', $templateId);
return $this;
}

/**
* @param int|null $templateId
* @return $this
*/
public function setSortTemplateId($templateId)
{
$this->setParameter('tn_st', $templateId);
return $this;
}
}

0 comments on commit 9aa9f23

Please sign in to comment.