public function FrxDrupalApplication::not_found in Forena Reports 7.2
Same name and namespace in other branches
- 6.2 FrxDrupalApplication.inc \FrxDrupalApplication::not_found()
- 7.3 FrxDrupalApplication.inc \FrxDrupalApplication::not_found()
- 7.4 FrxDrupalApplication.inc \FrxDrupalApplication::not_found()
What to do if we don't find a report Enter description here ...
Overrides FrxHostApplication::not_found
File
- ./
FrxDrupalApplication.inc, line 100 - 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
Code
public function not_found($name) {
require_once 'forena.admin.inc';
forena_delete_report($name);
return 'Report Not Found';
}