mirror of
https://gh.wpcy.net/https://github.com/WordPress/wordpress.org.git
synced 2026-04-30 06:42:28 +08:00
git-svn-id: https://meta.svn.wordpress.org/sites/trunk@1122 74240141-8908-4e6f-9713-ba540dce6ec7
8 lines
248 B
PHP
8 lines
248 B
PHP
<?php
|
|
|
|
spl_autoload_register( function( $class ) {
|
|
if ( 0 === strpos( $class, 'Dotorg\\Slack\\' ) ) {
|
|
require __DIR__ . '/' . strtolower( strtr( $class, array( 'Dotorg\\Slack\\' => '', '_' => '-', '\\' => '/' ) ) ) . '.php';
|
|
}
|
|
});
|
|
|