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