public function __construct()
 {
     parent::__construct();
     $this->button_label = lang($this->name) . ' (' . count($this->EE->config->config) . ')';
 }
 public function __construct()
 {
     parent::__construct();
     $this->button_label = count(get_included_files()) . ' ' . lang('files');
 }
 public function ee_debug_toolbar_add_panel($view)
 {
     $view = parent::ee_debug_toolbar_add_panel($view);
     $view->add_css($this->EE->toolbar->create_theme_url('default', 'css') . '/ee_debug_panel_database.css');
     return $view;
 }
 public function __construct()
 {
     parent::__construct();
     $this->button_label = $this->EE->toolbar->filesize_format(memory_get_peak_usage()) . ' ' . ini_get('memory_limit');
 }