public function __construct()
 {
     parent::__construct();
     $this->button_label = lang($this->name) . ' (' . count($this->EE->config->config) . ')';
 }
 public function __construct()
 {
     parent::__construct();
     $query_data = $this->EE->toolbar->setup_queries();
     $this->button_label = $this->EE->db->query_count . ' ' . lang('eedt_in') . ' ' . $query_data['total_time'] . 's';
 }
 public function __construct()
 {
     parent::__construct();
     $this->EE =& get_instance();
     $this->button_label = 'v' . APP_VER . ' / ' . phpversion();
 }
 public function __construct()
 {
     parent::__construct();
     $this->button_label = count(get_included_files()) . ' ' . lang('files');
 }
 public function __construct()
 {
     parent::__construct();
     $this->button_label = $this->EE->toolbar->filesize_format(memory_get_peak_usage()) . ' ' . ini_get('memory_limit');
 }
 public function __construct()
 {
     parent::__construct();
     $this->button_label = $this->EE->benchmark->elapsed_time('total_execution_time_start', 'total_execution_time_end') . 's';
 }