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