1e1d9dcc8SAndreas Gohr<?php 2*d4f83172SAndreas 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