diff --git a/application/views/helpers/CreateTicketLinks.php b/application/views/helpers/CreateTicketLinks.php index 52ef274fa..4f8a27249 100644 --- a/application/views/helpers/CreateTicketLinks.php +++ b/application/views/helpers/CreateTicketLinks.php @@ -12,12 +12,12 @@ class Zend_View_Helper_CreateTicketLinks extends Zend_View_Helper_Abstract * @param string $text * * @return string - * @see \Icinga\Web\Hook\TicketHook::createLinks() + * @see \Icinga\Application\Hook\TicketHook::createLinks() */ public function createTicketLinks($text) { $tickets = $this->view->tickets; - /** @var \Icinga\Web\Hook\TicketHook $tickets */ + /** @var \Icinga\Application\Hook\TicketHook $tickets */ return isset($tickets) ? $tickets->createLinks($text) : $text; } } diff --git a/doc/80-Upgrading.md b/doc/80-Upgrading.md index f524d8f2f..63a04dcee 100644 --- a/doc/80-Upgrading.md +++ b/doc/80-Upgrading.md @@ -49,6 +49,7 @@ v2.6 to v2.8 requires to follow the instructions for v2.7 too. + `Icinga\Util\String`: Use `Icinga\Util\StringHelper` instead. + `Icinga\Util\Translator`: Use `\ipl\I18n\StaticTranslator::$instance` or `\ipl\I18n\Translation` instead. + `Icinga\Module\Migrate\Clicommands\DashboardCommand` ++ `Icinga\Web\Hook\TicketHook`: Use `Icinga\Application\Hook\TicketHook` instead. * All the following deprecated js classes and methods are removed: diff --git a/library/Icinga/Web/Hook/TicketHook.php b/library/Icinga/Web/Hook/TicketHook.php deleted file mode 100644 index 183fa774a..000000000 --- a/library/Icinga/Web/Hook/TicketHook.php +++ /dev/null @@ -1,15 +0,0 @@ -