Skip to content

Commit 8cce0e6

Browse files
authored
Merge pull request #146 from Icinga/reorder
Reorder code
2 parents fd0673d + 33b4a63 commit 8cce0e6

File tree

153 files changed

+700
-566
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+700
-566
lines changed

application/controllers/AssetsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Icinga\Module\Kubernetes\Controllers;
66

7-
use Icinga\Module\Kubernetes\Web\Controller;
7+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
88

99
class AssetsController extends Controller
1010
{

application/controllers/ConfigController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use Icinga\Module\Kubernetes\Forms\NotificationsConfigForm;
1313
use Icinga\Module\Kubernetes\Forms\PrometheusConfigForm;
1414
use Icinga\Module\Kubernetes\Model\Config as KConfig;
15-
use Icinga\Module\Kubernetes\Web\Controller;
15+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
1616
use Icinga\Module\Notifications\Common\Database as NotificationsDatabase;
1717
use Icinga\Module\Notifications\Forms\SourceForm;
1818
use Icinga\Module\Notifications\Model\Source;

application/controllers/ConfigmapController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Model\ConfigMap;
10-
use Icinga\Module\Kubernetes\Web\ConfigMapDetail;
11-
use Icinga\Module\Kubernetes\Web\Controller;
10+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
11+
use Icinga\Module\Kubernetes\Web\Detail\ConfigMapDetail;
1212
use ipl\Stdlib\Filter;
1313
use Ramsey\Uuid\Uuid;
1414

application/controllers/ConfigmapsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\ConfigMap;
11-
use Icinga\Module\Kubernetes\Web\ListController;
11+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1212
use ipl\Orm\Query;
1313

1414
class ConfigmapsController extends ListController

application/controllers/ContainerController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
use Icinga\Module\Kubernetes\Common\Database;
88
use Icinga\Module\Kubernetes\Model\Container;
9-
use Icinga\Module\Kubernetes\Web\ContainerDetail;
10-
use Icinga\Module\Kubernetes\Web\Controller;
9+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
10+
use Icinga\Module\Kubernetes\Web\Detail\ContainerDetail;
1111
use ipl\Stdlib\Filter;
1212
use Ramsey\Uuid\Uuid;
1313

application/controllers/CronjobController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\CronJob;
1111
use Icinga\Module\Kubernetes\Model\Favorite;
12-
use Icinga\Module\Kubernetes\Web\Controller;
13-
use Icinga\Module\Kubernetes\Web\CronJobDetail;
12+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controls\QuickActions;
14+
use Icinga\Module\Kubernetes\Web\Detail\CronJobDetail;
1415
use Icinga\Module\Kubernetes\Web\ItemList\ResourceList;
15-
use Icinga\Module\Kubernetes\Web\QuickActions;
1616
use ipl\Stdlib\Filter;
1717
use Ramsey\Uuid\Uuid;
1818

application/controllers/CronjobsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Model\CronJob;
10-
use Icinga\Module\Kubernetes\Web\ListController;
10+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1111
use ipl\Orm\Query;
1212

1313
class CronjobsController extends ListController

application/controllers/DaemonsetController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\DaemonSet;
1111
use Icinga\Module\Kubernetes\Model\Favorite;
12-
use Icinga\Module\Kubernetes\Web\Controller;
13-
use Icinga\Module\Kubernetes\Web\DaemonSetDetail;
12+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controls\QuickActions;
14+
use Icinga\Module\Kubernetes\Web\Detail\DaemonSetDetail;
1415
use Icinga\Module\Kubernetes\Web\ItemList\ResourceList;
15-
use Icinga\Module\Kubernetes\Web\QuickActions;
1616
use ipl\Stdlib\Filter;
1717
use Ramsey\Uuid\Uuid;
1818

application/controllers/DaemonsetsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Model\DaemonSet;
10-
use Icinga\Module\Kubernetes\Web\ListController;
10+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1111
use ipl\Orm\Query;
1212

1313
class DaemonsetsController extends ListController

application/controllers/DashboardController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
use Icinga\Module\Kubernetes\Dashboard\StorageDashboard;
1414
use Icinga\Module\Kubernetes\Dashboard\WorkloadsDashboard;
1515
use Icinga\Module\Kubernetes\Model\Cluster;
16-
use Icinga\Module\Kubernetes\Web\ClusterForm;
17-
use Icinga\Module\Kubernetes\Web\Controller;
16+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
17+
use Icinga\Module\Kubernetes\Web\Widget\ClusterForm;
1818
use Icinga\Web\Session;
1919
use ipl\Html\Attributes;
2020

application/controllers/DeploymentController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Deployment;
1111
use Icinga\Module\Kubernetes\Model\Favorite;
12-
use Icinga\Module\Kubernetes\Web\Controller;
13-
use Icinga\Module\Kubernetes\Web\DeploymentDetail;
12+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controls\QuickActions;
14+
use Icinga\Module\Kubernetes\Web\Detail\DeploymentDetail;
1415
use Icinga\Module\Kubernetes\Web\ItemList\ResourceList;
15-
use Icinga\Module\Kubernetes\Web\QuickActions;
1616
use ipl\Stdlib\Filter;
1717
use Ramsey\Uuid\Uuid;
1818

application/controllers/DeploymentsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Model\Deployment;
10-
use Icinga\Module\Kubernetes\Web\ListController;
10+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1111
use ipl\Orm\Query;
1212

1313
class DeploymentsController extends ListController

application/controllers/EventController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Model\Event;
10-
use Icinga\Module\Kubernetes\Web\Controller;
11-
use Icinga\Module\Kubernetes\Web\EventDetail;
10+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
11+
use Icinga\Module\Kubernetes\Web\Detail\EventDetail;
1212
use ipl\Stdlib\Filter;
1313
use Ramsey\Uuid\Uuid;
1414

application/controllers/EventsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Event;
11-
use Icinga\Module\Kubernetes\Web\ListController;
11+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1212
use ipl\Orm\Query;
1313
use ipl\Stdlib\Filter;
1414

application/controllers/FavoriteController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Icinga\Module\Kubernetes\Forms\FavorForm;
1111
use Icinga\Module\Kubernetes\Forms\UnfavorForm;
1212
use Icinga\Module\Kubernetes\Model\Favorite;
13-
use Icinga\Module\Kubernetes\Web\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
1414
use ipl\Sql\Expression;
1515
use ipl\Stdlib\Filter;
1616
use Throwable;

application/controllers/FavoritesController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
9+
use Icinga\Module\Kubernetes\Common\Factory;
910
use Icinga\Module\Kubernetes\Model\Favorite;
10-
use Icinga\Module\Kubernetes\Web\Controller;
11-
use Icinga\Module\Kubernetes\Web\Factory;
12-
use Icinga\Module\Kubernetes\Web\FavoriteDashboard;
11+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
12+
use Icinga\Module\Kubernetes\Web\Widget\FavoriteDashboard;
1313
use Icinga\Web\Widget\Dashboard;
1414
use Icinga\Web\Widget\Dashboard\Dashlet;
1515
use Icinga\Web\Widget\Dashboard\Pane;

application/controllers/IngressController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Favorite;
1111
use Icinga\Module\Kubernetes\Model\Ingress;
12-
use Icinga\Module\Kubernetes\Web\Controller;
13-
use Icinga\Module\Kubernetes\Web\IngressDetail;
12+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controls\QuickActions;
14+
use Icinga\Module\Kubernetes\Web\Detail\IngressDetail;
1415
use Icinga\Module\Kubernetes\Web\ItemList\ResourceList;
15-
use Icinga\Module\Kubernetes\Web\QuickActions;
1616
use ipl\Stdlib\Filter;
1717
use Ramsey\Uuid\Uuid;
1818

application/controllers/IngressesController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Ingress;
11-
use Icinga\Module\Kubernetes\Web\ListController;
11+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1212
use ipl\Orm\Query;
1313

1414
class IngressesController extends ListController

application/controllers/InitContainerController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
use Icinga\Module\Kubernetes\Common\Database;
88
use Icinga\Module\Kubernetes\Model\InitContainer;
9-
use Icinga\Module\Kubernetes\Web\Controller;
10-
use Icinga\Module\Kubernetes\Web\InitContainerDetail;
9+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
10+
use Icinga\Module\Kubernetes\Web\Detail\InitContainerDetail;
1111
use ipl\Stdlib\Filter;
1212
use Ramsey\Uuid\Uuid;
1313

application/controllers/JobController.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Favorite;
1111
use Icinga\Module\Kubernetes\Model\Job;
12-
use Icinga\Module\Kubernetes\Web\Controller;
12+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controls\QuickActions;
14+
use Icinga\Module\Kubernetes\Web\Detail\JobDetail;
1315
use Icinga\Module\Kubernetes\Web\ItemList\ResourceList;
14-
use Icinga\Module\Kubernetes\Web\JobDetail;
15-
use Icinga\Module\Kubernetes\Web\JobList;
16-
use Icinga\Module\Kubernetes\Web\QuickActions;
1716
use ipl\Stdlib\Filter;
1817
use Ramsey\Uuid\Uuid;
1918

application/controllers/JobsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Model\Job;
10-
use Icinga\Module\Kubernetes\Web\ListController;
10+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1111
use ipl\Orm\Query;
1212

1313
class JobsController extends ListController

application/controllers/NamespaceController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Favorite;
1111
use Icinga\Module\Kubernetes\Model\NamespaceModel;
12-
use Icinga\Module\Kubernetes\Web\Controller;
12+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controls\QuickActions;
14+
use Icinga\Module\Kubernetes\Web\Detail\NamespaceDetail;
1315
use Icinga\Module\Kubernetes\Web\ItemList\ResourceList;
14-
use Icinga\Module\Kubernetes\Web\NamespaceDetail;
15-
use Icinga\Module\Kubernetes\Web\QuickActions;
1616
use ipl\Stdlib\Filter;
1717
use Ramsey\Uuid\Uuid;
1818

application/controllers/NamespacesController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Model\NamespaceModel;
10-
use Icinga\Module\Kubernetes\Web\ListController;
10+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1111
use ipl\Orm\Query;
1212

1313
class NamespacesController extends ListController

application/controllers/NodeController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Favorite;
1111
use Icinga\Module\Kubernetes\Model\Node;
12-
use Icinga\Module\Kubernetes\Web\Controller;
12+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controls\QuickActions;
14+
use Icinga\Module\Kubernetes\Web\Detail\NodeDetail;
1315
use Icinga\Module\Kubernetes\Web\ItemList\ResourceList;
14-
use Icinga\Module\Kubernetes\Web\NodeDetail;
15-
use Icinga\Module\Kubernetes\Web\QuickActions;
1616
use ipl\Stdlib\Filter;
1717
use Ramsey\Uuid\Uuid;
1818

application/controllers/NodesController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Model\Node;
10-
use Icinga\Module\Kubernetes\Web\ListController;
10+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1111
use ipl\Orm\Query;
1212

1313
class NodesController extends ListController

application/controllers/PersistentvolumeController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Favorite;
1111
use Icinga\Module\Kubernetes\Model\PersistentVolume;
12-
use Icinga\Module\Kubernetes\Web\Controller;
12+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controls\QuickActions;
14+
use Icinga\Module\Kubernetes\Web\Detail\PersistentVolumeDetail;
1315
use Icinga\Module\Kubernetes\Web\ItemList\ResourceList;
14-
use Icinga\Module\Kubernetes\Web\PersistentVolumeDetail;
15-
use Icinga\Module\Kubernetes\Web\QuickActions;
1616
use ipl\Stdlib\Filter;
1717
use Ramsey\Uuid\Uuid;
1818

application/controllers/PersistentvolumeclaimController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Favorite;
1111
use Icinga\Module\Kubernetes\Model\PersistentVolumeClaim;
12-
use Icinga\Module\Kubernetes\Web\Controller;
12+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controls\QuickActions;
14+
use Icinga\Module\Kubernetes\Web\Detail\PersistentVolumeClaimDetail;
1315
use Icinga\Module\Kubernetes\Web\ItemList\ResourceList;
14-
use Icinga\Module\Kubernetes\Web\PersistentVolumeClaimDetail;
15-
use Icinga\Module\Kubernetes\Web\QuickActions;
1616
use ipl\Stdlib\Filter;
1717
use Ramsey\Uuid\Uuid;
1818

application/controllers/PersistentvolumeclaimsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\PersistentVolumeClaim;
11-
use Icinga\Module\Kubernetes\Web\ListController;
11+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1212
use ipl\Orm\Query;
1313

1414
class PersistentvolumeclaimsController extends ListController

application/controllers/PersistentvolumesController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\PersistentVolume;
11-
use Icinga\Module\Kubernetes\Web\ListController;
11+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1212
use ipl\Orm\Query;
1313

1414
class PersistentvolumesController extends ListController

application/controllers/PodController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Favorite;
1111
use Icinga\Module\Kubernetes\Model\Pod;
12-
use Icinga\Module\Kubernetes\Web\Controller;
12+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controls\QuickActions;
14+
use Icinga\Module\Kubernetes\Web\Detail\PodDetail;
1315
use Icinga\Module\Kubernetes\Web\ItemList\ResourceList;
14-
use Icinga\Module\Kubernetes\Web\PodDetail;
15-
use Icinga\Module\Kubernetes\Web\QuickActions;
1616
use ipl\Stdlib\Filter;
1717
use Ramsey\Uuid\Uuid;
1818

application/controllers/PodsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Model\Pod;
10-
use Icinga\Module\Kubernetes\Web\ListController;
10+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1111
use ipl\Orm\Query;
1212

1313
class PodsController extends ListController

application/controllers/ReplicasetController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Favorite;
1111
use Icinga\Module\Kubernetes\Model\ReplicaSet;
12-
use Icinga\Module\Kubernetes\Web\Controller;
12+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
13+
use Icinga\Module\Kubernetes\Web\Controls\QuickActions;
14+
use Icinga\Module\Kubernetes\Web\Detail\ReplicaSetDetail;
1315
use Icinga\Module\Kubernetes\Web\ItemList\ResourceList;
14-
use Icinga\Module\Kubernetes\Web\QuickActions;
15-
use Icinga\Module\Kubernetes\Web\ReplicaSetDetail;
1616
use ipl\Stdlib\Filter;
1717
use Ramsey\Uuid\Uuid;
1818

application/controllers/ReplicasetsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Model\ReplicaSet;
10-
use Icinga\Module\Kubernetes\Web\ListController;
10+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1111
use ipl\Orm\Query;
1212

1313
class ReplicasetsController extends ListController

application/controllers/SecretController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
use Icinga\Module\Kubernetes\Common\Auth;
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Model\Secret;
10-
use Icinga\Module\Kubernetes\Web\Controller;
11-
use Icinga\Module\Kubernetes\Web\SecretDetail;
10+
use Icinga\Module\Kubernetes\Web\Controller\Controller;
11+
use Icinga\Module\Kubernetes\Web\Detail\SecretDetail;
1212
use ipl\Stdlib\Filter;
1313
use Ramsey\Uuid\Uuid;
1414

application/controllers/SecretsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Icinga\Module\Kubernetes\Common\Database;
99
use Icinga\Module\Kubernetes\Common\ViewMode;
1010
use Icinga\Module\Kubernetes\Model\Secret;
11-
use Icinga\Module\Kubernetes\Web\ListController;
11+
use Icinga\Module\Kubernetes\Web\Controller\ListController;
1212
use ipl\Orm\Query;
1313

1414
class SecretsController extends ListController

0 commit comments

Comments
 (0)