public function FrxHostApplication::link in Forena Reports 7.2
Same name and namespace in other branches
- 6.2 FrxHostApplication.inc \FrxHostApplication::link()
Convert a relative link to appropriately rendered html return html A properly formatted anchor tag
1 call to FrxHostApplication::link()
- FrxHostApplication::report_link in ./
FrxHostApplication.inc - Convert the report name into a link to the report Enter description here ...
1 method overrides FrxHostApplication::link()
- FrxDrupalApplication::link in ./
FrxDrupalApplication.inc - * Convert a relative link to appropriately rendered html * return html A properly formatted anchor tag
File
- ./
FrxHostApplication.inc, line 40
Class
Code
public function link($title, $path, $options = array()) {
return '<a href="' . $path . '">' . $title . '</a>';
}