Move timeline classes into the monitoring module

refs #4190
This commit is contained in:
Johannes Meyer 2014-03-20 14:30:48 +01:00
parent 0a146b4bb4
commit aade2ab7f6
5 changed files with 16 additions and 17 deletions

View File

@ -29,14 +29,14 @@
use \DateTime; use \DateTime;
use \Exception; use \Exception;
use \DateInterval; use \DateInterval;
use \Icinga\Web\Hook; use Icinga\Web\Hook;
use \Icinga\Timeline\TimeLine; use Icinga\Application\Config;
use \Icinga\Timeline\TimeEntry; use Icinga\Exception\ProgrammingError;
use \Icinga\Timeline\TimeRange; use Icinga\Web\Controller\ActionController;
use \Icinga\Application\Config; use Icinga\Module\Monitoring\Timeline\TimeLine;
use \Icinga\Exception\ProgrammingError; use Icinga\Module\Monitoring\Timeline\TimeEntry;
use \Icinga\Web\Controller\ActionController; use Icinga\Module\Monitoring\Timeline\TimeRange;
use \Icinga\Module\Monitoring\DataView\EventHistory as EventHistoryView; use Icinga\Module\Monitoring\DataView\EventHistory as EventHistoryView;
class Monitoring_TimelineController extends ActionController class Monitoring_TimelineController extends ActionController
{ {

View File

@ -26,10 +26,10 @@
*/ */
// {{{ICINGA_LICENSE_HEADER}}} // {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Timeline; namespace Icinga\Module\Monitoring\Timeline;
use \DateTime; use \DateTime;
use \Icinga\Exception\ProgrammingError; use Icinga\Exception\ProgrammingError;
/** /**
* An event group that is part of a timeline * An event group that is part of a timeline

View File

@ -26,14 +26,13 @@
*/ */
// {{{ICINGA_LICENSE_HEADER}}} // {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Timeline; namespace Icinga\Module\Monitoring\Timeline;
use \Zend_Config; use \Zend_Config;
use \DateInterval; use \DateInterval;
use \Zend_View_Interface; use \Zend_View_Interface;
use \Icinga\Web\Form; use Icinga\Web\Form;
use \Icinga\Web\Form\Element\Note; use Icinga\Web\Form\Element\Note;
use \Icinga\Timeline\TimeEntry;
/** /**
* Represents a set of events in a specific time range * Represents a set of events in a specific time range

View File

@ -26,7 +26,7 @@
*/ */
// {{{ICINGA_LICENSE_HEADER}}} // {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Timeline; namespace Icinga\Module\Monitoring\Timeline;
use \StdClass; use \StdClass;
use \Iterator; use \Iterator;

View File

@ -26,10 +26,10 @@
*/ */
// {{{ICINGA_LICENSE_HEADER}}} // {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Web\Hook; namespace Icinga\Module\Monitoring\Web\Hook;
use \Zend_Controller_Request_Abstract; use \Zend_Controller_Request_Abstract;
use \Icinga\Timeline\TimeRange; use Icinga\Module\Monitoring\Timeline\TimeRange;
/** /**
* Base class for TimeEntry providers * Base class for TimeEntry providers