Ejemplo n.º 1
0
 /**
  * @test
  */
 public function displayHooks()
 {
     $str = tx_additionalreports_main::displayHooks();
     $this->assertTrue(!empty($str));
 }
 /**
  * This method renders the report
  *
  * @return    string    The status report as HTML
  */
 public function getReport()
 {
     $content = '<p class="help">' . $GLOBALS['LANG']->getLL('hooks_description') . '</p>';
     $content .= tx_additionalreports_main::displayHooks();
     return $content;
 }