You are here

public function FrxDrupalApplication::not_found in Forena Reports 6.2

Same name and namespace in other branches
  1. 7.2 FrxDrupalApplication.inc \FrxDrupalApplication::not_found()
  2. 7.3 FrxDrupalApplication.inc \FrxDrupalApplication::not_found()
  3. 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 98
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 not_found($name = '') {
  require_once 'forena.admin.inc';
  if ($name) {
    forena_delete_report($name);
  }
  return 'Report Not Found';
}