xref: /dokuwiki/inc/legacy.php (revision db9267247e06d4aae1a33463c71b2c22d7f7a2a7)
1e1d9dcc8SAndreas Gohr<?php
2d4f83172SAndreas Gohr
3e1d9dcc8SAndreas Gohr/**
4e1d9dcc8SAndreas Gohr * We map legacy class names to the new namespaced versions here
5e1d9dcc8SAndreas Gohr *
6e1d9dcc8SAndreas Gohr * These are names that we will probably never change because they have been part of DokuWiki's
7e1d9dcc8SAndreas Gohr * public interface for years and renaming would break just too many plugins
8a0aeafaaSAndreas Gohr *
9a0aeafaaSAndreas Gohr * Note: when adding to this file, please also add appropriate actions to _test/rector.php
10e1d9dcc8SAndreas Gohr */
11e1d9dcc8SAndreas Gohr
12e1d9dcc8SAndreas Gohrclass_alias('\dokuwiki\Extension\EventHandler', 'Doku_Event_Handler');
13e1d9dcc8SAndreas Gohrclass_alias('\dokuwiki\Extension\Event', 'Doku_Event');
14e1d9dcc8SAndreas Gohr
15e1d9dcc8SAndreas Gohrclass_alias('\dokuwiki\Extension\ActionPlugin', 'DokuWiki_Action_Plugin');
16e1d9dcc8SAndreas Gohrclass_alias('\dokuwiki\Extension\AdminPlugin', 'DokuWiki_Admin_Plugin');
17e1d9dcc8SAndreas Gohrclass_alias('\dokuwiki\Extension\AuthPlugin', 'DokuWiki_Auth_Plugin');
18e1d9dcc8SAndreas Gohrclass_alias('\dokuwiki\Extension\CLIPlugin', 'DokuWiki_CLI_Plugin');
19e1d9dcc8SAndreas Gohrclass_alias('\dokuwiki\Extension\Plugin', 'DokuWiki_Plugin');
20e1d9dcc8SAndreas Gohrclass_alias('\dokuwiki\Extension\RemotePlugin', 'DokuWiki_Remote_Plugin');
21e1d9dcc8SAndreas Gohrclass_alias('\dokuwiki\Extension\SyntaxPlugin', 'DokuWiki_Syntax_Plugin');
22*db926724SAndreas Gohr
23*db926724SAndreas Gohrclass_alias('\dokuwiki\Feed\FeedParser', 'FeedParser');
24