1<?php 2/** 3 * Load all internal libraries and setup class autoloader 4 * 5 * @author Andreas Gohr <andi@splitbrain.org> 6 */ 7 8// setup class autoloader 9spl_autoload_register('load_autoload'); 10 11// require all the common libraries 12// for a few of these order does matter 13require_once(DOKU_INC.'inc/actions.php'); 14require_once(DOKU_INC.'inc/changelog.php'); 15require_once(DOKU_INC.'inc/common.php'); 16require_once(DOKU_INC.'inc/confutils.php'); 17require_once(DOKU_INC.'inc/pluginutils.php'); 18require_once(DOKU_INC.'inc/events.php'); 19require_once(DOKU_INC.'inc/form.php'); 20require_once(DOKU_INC.'inc/fulltext.php'); 21require_once(DOKU_INC.'inc/html.php'); 22require_once(DOKU_INC.'inc/httputils.php'); 23require_once(DOKU_INC.'inc/indexer.php'); 24require_once(DOKU_INC.'inc/infoutils.php'); 25require_once(DOKU_INC.'inc/io.php'); 26require_once(DOKU_INC.'inc/mail.php'); 27require_once(DOKU_INC.'inc/media.php'); 28require_once(DOKU_INC.'inc/pageutils.php'); 29require_once(DOKU_INC.'inc/parserutils.php'); 30require_once(DOKU_INC.'inc/search.php'); 31require_once(DOKU_INC.'inc/subscription.php'); 32require_once(DOKU_INC.'inc/template.php'); 33require_once(DOKU_INC.'inc/toolbar.php'); 34require_once(DOKU_INC.'inc/utf8.php'); 35require_once(DOKU_INC.'inc/auth.php'); 36require_once(DOKU_INC.'inc/compatibility.php'); 37require_once(DOKU_INC.'inc/deprecated.php'); 38 39/** 40 * spl_autoload_register callback 41 * 42 * Contains a static list of DokuWiki's core classes and automatically 43 * require()s their associated php files when an object is instantiated. 44 * 45 * @author Andreas Gohr <andi@splitbrain.org> 46 * @todo add generic loading of renderers and auth backends 47 * 48 * @param string $name 49 * 50 * @return bool 51 */ 52function load_autoload($name){ 53 static $classes = null; 54 if(is_null($classes)) $classes = array( 55 'Diff' => DOKU_INC.'inc/DifferenceEngine.php', 56 'UnifiedDiffFormatter' => DOKU_INC.'inc/DifferenceEngine.php', 57 'TableDiffFormatter' => DOKU_INC.'inc/DifferenceEngine.php', 58 'cache' => DOKU_INC.'inc/cache.php', 59 'cache_parser' => DOKU_INC.'inc/cache.php', 60 'cache_instructions' => DOKU_INC.'inc/cache.php', 61 'cache_renderer' => DOKU_INC.'inc/cache.php', 62 'Doku_Event' => DOKU_INC.'inc/events.php', 63 'Doku_Event_Handler' => DOKU_INC.'inc/events.php', 64 'JpegMeta' => DOKU_INC.'inc/JpegMeta.php', 65 'SimplePie' => DOKU_INC.'inc/SimplePie.php', 66 'FeedParser' => DOKU_INC.'inc/FeedParser.php', 67 'IXR_Server' => DOKU_INC.'inc/IXR_Library.php', 68 'IXR_Client' => DOKU_INC.'inc/IXR_Library.php', 69 'IXR_Error' => DOKU_INC.'inc/IXR_Library.php', 70 'IXR_IntrospectionServer' => DOKU_INC.'inc/IXR_Library.php', 71 'Doku_Plugin_Controller'=> DOKU_INC.'inc/plugincontroller.class.php', 72 'SafeFN' => DOKU_INC.'inc/SafeFN.class.php', 73 'Sitemapper' => DOKU_INC.'inc/Sitemapper.php', 74 'Mailer' => DOKU_INC.'inc/Mailer.class.php', 75 76 'DokuWiki_PluginInterface' => DOKU_INC.'inc/PluginInterface.php', 77 'DokuWiki_PluginTrait' => DOKU_INC.'inc/PluginTrait.php', 78 'DokuWiki_Plugin' => DOKU_INC.'inc/Plugin.php', 79 80 81 'DokuWiki_Action_Plugin' => DOKU_PLUGIN.'action.php', 82 'DokuWiki_Admin_Plugin' => DOKU_PLUGIN.'admin.php', 83 'DokuWiki_Syntax_Plugin' => DOKU_PLUGIN.'syntax.php', 84 'DokuWiki_Remote_Plugin' => DOKU_PLUGIN.'remote.php', 85 'DokuWiki_Auth_Plugin' => DOKU_PLUGIN.'auth.php', 86 'DokuWiki_CLI_Plugin' => DOKU_PLUGIN.'cli.php', 87 88 'Doku_Handler' => DOKU_INC.'inc/parser/handler.php', 89 'Doku_Renderer' => DOKU_INC.'inc/parser/renderer.php', 90 'Doku_Renderer_xhtml' => DOKU_INC.'inc/parser/xhtml.php', 91 'Doku_Renderer_code' => DOKU_INC.'inc/parser/code.php', 92 'Doku_Renderer_xhtmlsummary' => DOKU_INC.'inc/parser/xhtmlsummary.php', 93 'Doku_Renderer_metadata' => DOKU_INC.'inc/parser/metadata.php', 94 95 'DokuCLI' => DOKU_INC.'inc/cli.php', 96 'DokuCLI_Options' => DOKU_INC.'inc/cli.php', 97 'DokuCLI_Colors' => DOKU_INC.'inc/cli.php', 98 99 ); 100 101 if(isset($classes[$name])){ 102 require ($classes[$name]); 103 return true; 104 } 105 106 // namespace to directory conversion 107 $name = str_replace('\\', '/', $name); 108 109 // test namespace 110 if(substr($name, 0, 14) == 'dokuwiki/test/') { 111 $file = DOKU_INC . '_test/' . substr($name, 14) . '.php'; 112 if(file_exists($file)) { 113 require $file; 114 return true; 115 } 116 } 117 118 // plugin namespace 119 if(substr($name, 0, 16) == 'dokuwiki/plugin/') { 120 $name = str_replace('/test/', '/_test/', $name); // no underscore in test namespace 121 $file = DOKU_PLUGIN . substr($name, 16) . '.php'; 122 if(file_exists($file)) { 123 require $file; 124 return true; 125 } 126 } 127 128 // template namespace 129 if(substr($name, 0, 18) == 'dokuwiki/template/') { 130 $name = str_replace('/test/', '/_test/', $name); // no underscore in test namespace 131 $file = DOKU_INC.'lib/tpl/' . substr($name, 18) . '.php'; 132 if(file_exists($file)) { 133 require $file; 134 return true; 135 } 136 } 137 138 // our own namespace 139 if(substr($name, 0, 9) == 'dokuwiki/') { 140 $file = DOKU_INC . 'inc/' . substr($name, 9) . '.php'; 141 if(file_exists($file)) { 142 require $file; 143 return true; 144 } 145 } 146 147 // Plugin loading 148 if(preg_match( 149 '/^(auth|helper|syntax|action|admin|renderer|remote|cli)_plugin_(' . 150 DOKU_PLUGIN_NAME_REGEX . 151 ')(?:_([^_]+))?$/', 152 $name, 153 $m 154 )) { 155 // try to load the wanted plugin file 156 $c = ((count($m) === 4) ? "/{$m[3]}" : ''); 157 $plg = DOKU_PLUGIN . "{$m[2]}/{$m[1]}$c.php"; 158 if(file_exists($plg)){ 159 require $plg; 160 } 161 return true; 162 } 163 return false; 164} 165 166