public function display($db = '')
 {
     $this->db = $db;
     $this->gatherConsoleData();
     $this->gatherPathData();
     $this->gatherFileData();
     $this->gatherMemoryData();
     $this->gatherQueryData();
     $this->gatherSpeedData();
     require_once 'display.php';
     return displayPqp($this->output);
 }
Example #2
0
 public function display($db = '')
 {
     $this->db = $db;
     $this->gatherConsoleData();
     $this->gatherFileData();
     $this->gatherMemoryData();
     $this->gatherQueryData();
     $this->gatherSpeedData();
     require_once $_SERVER['DOCUMENT_ROOT'] . $this->config . 'display.php';
     displayPqp($this->output, $this->config);
 }
Example #3
0
 public function display($db = '', $master_db = '')
 {
     $this->db = $db;
     $this->master_db = $master_db;
     $this->gatherConsoleData();
     $this->gatherFileData();
     $this->gatherMemoryData();
     $this->gatherQueryData();
     $this->gatherSpeedData();
     //require_once($_SERVER['DOCUMENT_ROOT'].$this->config.'display.php');
     require_once dirname(__FILE__) . '/../display.php';
     ob_start();
     displayPqp($this->output, $this->config);
     $buffer = ob_get_contents();
     @ob_end_clean();
     return $buffer;
 }
 public function display($db = '', $master_db = '')
 {
     $this->db = $db;
     $this->master_db = $master_db;
     $this->gatherSpeedData();
     $this->gatherConsoleData();
     $this->gatherFileData();
     $this->gatherMemoryData();
     $this->gatherQueryData();
     //require_once(dirname(__FILE__).'../'.$this->config.'display.php');
     displayPqp($this->output, $this->config);
 }
Example #5
0
	public function display($db = '', $master_db = '') {
		$this->db = $db;
		$this->master_db = $master_db;
		$this->gatherConsoleData();
		$this->gatherFileData();
		$this->gatherMemoryData();
		$this->gatherQueryData();
		$this->gatherSpeedData();
		require_once($this->config.'display.php');
		displayPqp($this->output, $this->url_css);
	}
Example #6
0
 public function display($db = '', $master_db = '')
 {
     $this->db = $db;
     $this->master_db = $master_db;
     $this->gatherConsoleData();
     $this->gatherFileData();
     $this->gatherMemoryData();
     $this->gatherQueryData();
     $this->gatherSpeedData();
     displayPqp($this->output, $this->config);
 }
 public function display($db = '', $master_db = '')
 {
     $this->db = $db;
     $this->master_db = $master_db;
     $this->gatherConsoleData();
     $this->gatherFileData();
     $this->gatherMemoryData();
     $this->gatherQueryData();
     $this->gatherSpeedData();
     require_once $this->config . 'display.php';
     displayPqp($this->output, OWA_PUBLIC_URL . 'includes/pqp/');
 }
Example #8
0
 public function display($db = '', $master_db = '')
 {
     $this->db = $db;
     $this->master_db = $master_db;
     $this->gatherConsoleData();
     $this->gatherFileData();
     $this->gatherMemoryData();
     $this->gatherQueryData();
     $this->gatherSpeedData();
     require_once FLGR_COMMON . '/PhpQuickDisplay.php';
     displayPqp($this->output);
 }