You are here

public function FrxDrupalApplication::link in Forena Reports 6.2

Same name and namespace in other branches
  1. 7.2 FrxDrupalApplication.inc \FrxDrupalApplication::link()

* Convert a relative link to appropriately rendered html * return html A properly formatted anchor tag

Overrides FrxHostApplication::link

File

./FrxDrupalApplication.inc, line 37
HostApp.inc Defines all the interface points between the host application and Forena. Each of these methods must be specified in order for Forena to function properly. The base class here is drupal, so those

Class

FrxDrupalApplication

Code

public function link($title, $path, $options = array()) {
  return l($title, $path, $options);
}