tableViewLink
tableViewLink($options = array())
Description:
Returns HTML->link that opens the table view.
Options:
Example:
//
$tableViewLink = $this->Deals->tableViewLink($options = array());
//
echo $tableViewLink; // produces Table View
public function tableViewLink($options = array()) {
//
return $this->Html->link(
'Table View'
, array(
'plugin' => 'deals'
, 'controller' => 'deals'
, 'action' => 'table'
, 'dashboard' => true
,
)
);
}