123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?php
- $lib_dir = __DIR__ . "/lib";
- require_once "$lib_dir/autoloader.php";
- $autoload_path = dirname(__DIR__) . '/vendor/autoload.php';
- $autoload_available = include_once($autoload_path);
- if (!$autoload_available) {
- die("Couldn't include '$autoload_path'. Did you run `composer install`?");
- }
- _elgg_services();
- $lib_files = array(
-
- 'elgglib.php',
-
-
- 'access.php',
- 'actions.php',
- 'admin.php',
- 'annotations.php',
- 'cache.php',
- 'comments.php',
- 'configuration.php',
- 'cron.php',
- 'database.php',
- 'entities.php',
- 'extender.php',
- 'filestore.php',
- 'friends.php',
- 'group.php',
- 'input.php',
- 'languages.php',
- 'mb_wrapper.php',
- 'memcache.php',
- 'metadata.php',
- 'metastrings.php',
- 'navigation.php',
- 'notification.php',
- 'objects.php',
- 'output.php',
- 'pagehandler.php',
- 'pageowner.php',
- 'pam.php',
- 'plugins.php',
- 'private_settings.php',
- 'relationships.php',
- 'river.php',
- 'sessions.php',
- 'sites.php',
- 'statistics.php',
- 'system_log.php',
- 'tags.php',
- 'user_settings.php',
- 'users.php',
- 'upgrade.php',
- 'views.php',
- 'widgets.php',
-
- 'deprecated-1.7.php',
- 'deprecated-1.8.php',
- 'deprecated-1.9.php',
- 'deprecated-1.10.php',
- 'deprecated-1.11.php',
- 'deprecated-1.12.php',
- );
- call_user_func(function () use ($lib_dir, $lib_files) {
- $setups = array();
-
- foreach ($lib_files as $file) {
- $setup = (require_once "$lib_dir/$file");
- if ($setup instanceof Closure) {
- $setups[$file] = $setup;
- }
- }
- $events = _elgg_services()->events;
- $hooks = _elgg_services()->hooks;
-
- foreach ($setups as $func) {
- $func($events, $hooks);
- }
- });
|