mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-06-14 10:50:14 +02:00
Remove obsolete use statements
This commit is contained in:
parent
eea43e9a60
commit
f23bf912eb
@ -2,15 +2,8 @@
|
|||||||
// {{{ICINGA_LICENSE_HEADER}}}
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
// {{{ICINGA_LICENSE_HEADER}}}
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
|
|
||||||
use Icinga\Application\Icinga;
|
|
||||||
use Icinga\Application\Config;
|
|
||||||
use Icinga\Logger\Logger;
|
|
||||||
use Icinga\Web\Form;
|
|
||||||
use Icinga\Module\Monitoring\Controller;
|
use Icinga\Module\Monitoring\Controller;
|
||||||
use Icinga\Chart\SVGRenderer;
|
|
||||||
use Icinga\Chart\GridChart;
|
use Icinga\Chart\GridChart;
|
||||||
use Icinga\Chart\Palette;
|
|
||||||
use Icinga\Chart\Axis;
|
|
||||||
use Icinga\Chart\PieChart;
|
use Icinga\Chart\PieChart;
|
||||||
use Icinga\Chart\Unit\StaticAxis;
|
use Icinga\Chart\Unit\StaticAxis;
|
||||||
|
|
||||||
@ -140,7 +133,7 @@ class Monitoring_ChartController extends Controller
|
|||||||
}
|
}
|
||||||
$this->view->chart = new GridChart();
|
$this->view->chart = new GridChart();
|
||||||
$this->view->chart->setAxisLabel('', t('Services'))
|
$this->view->chart->setAxisLabel('', t('Services'))
|
||||||
->setXAxis(new \Icinga\Chart\Unit\StaticAxis());
|
->setXAxis(new StaticAxis());
|
||||||
|
|
||||||
$this->view->chart->drawBars(
|
$this->view->chart->drawBars(
|
||||||
array(
|
array(
|
||||||
|
@ -2,10 +2,7 @@
|
|||||||
// {{{ICINGA_LICENSE_HEADER}}}
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
// {{{ICINGA_LICENSE_HEADER}}}
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
|
|
||||||
use Icinga\Web\Form;
|
|
||||||
use Icinga\Module\Monitoring\Controller;
|
use Icinga\Module\Monitoring\Controller;
|
||||||
use Icinga\Module\Monitoring\Backend;
|
|
||||||
use Icinga\Data\SimpleQuery;
|
|
||||||
use Icinga\Web\Widget\Chart\InlinePie;
|
use Icinga\Web\Widget\Chart\InlinePie;
|
||||||
use Icinga\Module\Monitoring\Form\Command\MultiCommandFlagForm;
|
use Icinga\Module\Monitoring\Form\Command\MultiCommandFlagForm;
|
||||||
use Icinga\Web\Widget;
|
use Icinga\Web\Widget;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user