/usr/share/phpmyadmin/libraries/classes/Navigation/Nodes
Edit: /usr/share/phpmyadmin/libraries/classes/Navigation/Nodes/NodeView.php (1384B)
icon = Generator::getImage('b_props', __('View'));
$this->links = [
'text' => Url::getFromRoute('/sql')
. '&server=' . $GLOBALS['server']
. '&db=%2$s&table=%1$s&pos=0',
'icon' => Url::getFromRoute('/table/structure')
. '&server=' . $GLOBALS['server']
. '&db=%2$s&table=%1$s',
];
$this->classes = 'view';
}
/**
* Returns the type of the item represented by the node.
*
* @return string type of the item
*/
protected function getItemType()
{
return 'view';
}
}