コード例 #1
0
 /**
  * Test for disable
  *
  * @return void
  */
 public function testDisable()
 {
     $header = new PMA_Header();
     $header->disable();
     $this->assertEquals(
         '',
         $header->getDisplay()
     );
 }
コード例 #2
0
 /**
  * Disables the rendering of the header
  * and the footer in responses
  *
  * @return void
  */
 public function disable()
 {
     $this->_header->disable();
     $this->_footer->disable();
 }