Add API client class name to the debug panel.

This commit is contained in:
Yahnis Elsts 2017-01-03 13:37:43 +02:00
parent 1e709c6199
commit 1905ed84dd
2 changed files with 2 additions and 0 deletions

View File

@ -191,6 +191,7 @@ if ( !class_exists('Puc_v4_Vcs_PluginUpdateChecker') ):
parent::onDisplayConfiguration($panel);
$panel->row('Branch', $this->branch);
$panel->row('Authentication enabled', $this->api->isAuthenticationEnabled() ? 'Yes' : 'No');
$panel->row('API client', get_class($this->api));
}
}

View File

@ -94,6 +94,7 @@ if ( !class_exists('Puc_v4_Vcs_ThemeUpdateChecker', false) ):
parent::onDisplayConfiguration($panel);
$panel->row('Branch', $this->branch);
$panel->row('Authentication enabled', $this->api->isAuthenticationEnabled() ? 'Yes' : 'No');
$panel->row('API client', get_class($this->api));
}
}