mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
21 lines
417 B
PHP
21 lines
417 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionRepositoryClusterManagementPanel
|
||
|
extends DiffusionRepositoryManagementPanel {
|
||
|
|
||
|
const PANELKEY = 'cluster';
|
||
|
|
||
|
public function getManagementPanelLabel() {
|
||
|
return pht('Cluster Configuration');
|
||
|
}
|
||
|
|
||
|
public function getManagementPanelOrder() {
|
||
|
return 12345;
|
||
|
}
|
||
|
|
||
|
public function buildManagementPanelContent() {
|
||
|
return pht('TODO: Cluster configuration management.');
|
||
|
}
|
||
|
|
||
|
}
|