Table::getLink()
Version 4.1
Returns a link to table
Version 4.1
Returns a link to table
Creates a link and sets link to current table.
Object Link
$Link = $this->get('table','order')->getLink();
Add a link to the table.
$link = "<a href='{$Order->getLink()}'>Open table</a>";
Returns a TableLink object, which is subclass of Link object, so you can add parameters to it.
Open table pages -list.
$this->get('table','order')->getLink()->open();
PageLink adds some new methods to methods in Link -class.
Get a link to create a new page to same table.
$LinkToNewPage = $this->get('table','order')->openNew();