'_blank'); function link($file, $line=null, $title='Show') { $link=$this->Html->link($title, array ('controller' => 'debug', 'action' => 'open',$file, $line),$this->options); $this->log($link); return $link; } function current_links() { $modelLink=$this->Html->link('Show Model', array ('controller' => 'debug', 'action' => 'open_model',$this->params['controller']),$this->options); $controllerLink=$this->Html->link('Show controller', array ('controller' => 'debug', 'action' => 'open_controller',$this->params['controller'], $this->params['action']),$this->options); $viewLink=$this->Html->link('Show view', array ('controller' => 'debug', 'action' => 'open_view',$this->params['controller'], $this->params['action']),$this->options); return "$modelLink $controllerLink $viewLink"; } } ?>