Elgg  Version master
SystemEventHandlers.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Application;
4 
19 
26 
32  public static function init() {
34  if ((bool) elgg_get_config('enable_delayed_email')) {
35  elgg_register_notification_method('delayed_email');
36  }
37 
38  elgg_register_notification_event('object', 'comment', ['create'], CreateComment::class);
39  elgg_register_notification_event('object', 'comment', ['mentions'], Mentions::class);
40  elgg_register_notification_event('user', 'user', ['admin_validation'], AdminValidation::class);
41  elgg_register_notification_event('user', 'user', ['ban'], BanUser::class);
42  elgg_register_notification_event('user', 'user', ['changepassword'], ChangeUserPassword::class);
43  elgg_register_notification_event('user', 'user', ['email_change'], ConfirmEmailChange::class);
44  elgg_register_notification_event('user', 'user', ['make_admin'], MakeAdminUser::class);
45  elgg_register_notification_event('user', 'user', ['password_change'], ConfirmPasswordChange::class);
46  elgg_register_notification_event('user', 'user', ['remove_admin'], RemoveAdminUser::class);
47  elgg_register_notification_event('user', 'user', ['requestnewpassword'], RequestUserPassword::class);
48  elgg_register_notification_event('user', 'user', ['resetpassword'], ResetUserPassword::class);
49  elgg_register_notification_event('user', 'user', ['unban'], UnbanUser::class);
50  elgg_register_notification_event('user', 'user', ['useradd'], AddUser::class);
51  elgg_register_notification_event('user', 'user', ['validate'], ValidateUser::class);
52 
53  // if mb functions are available, set internal encoding to UTF8
54  if (is_callable('mb_internal_encoding')) {
55  mb_internal_encoding('UTF-8');
56  }
57 
58  elgg_register_ajax_view('admin/users/listing/details');
59  elgg_register_ajax_view('core/ajax/edit_comment');
60  elgg_register_ajax_view('forms/admin/user/change_email');
61  elgg_register_ajax_view('forms/comment/save');
62  elgg_register_ajax_view('forms/entity/chooserestoredestination');
63  elgg_register_ajax_view('navigation/menu/user_hover/contents');
64  elgg_register_ajax_view('notifications/subscriptions/details');
65  elgg_register_ajax_view('object/plugin/details');
66  elgg_register_ajax_view('object/widget/edit');
67  elgg_register_ajax_view('page/elements/comments');
68  elgg_register_ajax_view('page/layouts/widgets/add_panel');
69  elgg_register_ajax_view('river/elements/responses');
70 
71  elgg_extend_view('admin.css', 'lightbox/elgg-colorbox-theme/colorbox.css');
72  elgg_extend_view('core/settings/statistics', 'core/settings/statistics/online');
73  elgg_extend_view('core/settings/statistics', 'core/settings/statistics/numentities');
74  elgg_extend_view('forms/usersettings/save', 'core/settings/account/username', 100);
75  elgg_extend_view('forms/usersettings/save', 'core/settings/account/name', 100);
76  elgg_extend_view('forms/usersettings/save', 'core/settings/account/email', 100);
77  elgg_extend_view('forms/usersettings/save', 'core/settings/account/password', 100);
78  elgg_extend_view('forms/usersettings/save', 'core/settings/account/language', 100);
79  elgg_extend_view('forms/usersettings/save', 'core/settings/account/default_access', 100);
80 
81  elgg_register_simplecache_view('admin.css');
82  elgg_register_simplecache_view('resources/manifest.json');
83 
84  elgg_register_external_file('css', 'elgg.admin', elgg_get_simplecache_url('admin.css'));
85  elgg_register_external_file('css', 'admin/users/unvalidated', elgg_get_simplecache_url('admin/users/unvalidated.css'));
86  elgg_register_external_file('css', 'maintenance', elgg_get_simplecache_url('maintenance.css'));
87 
88  elgg_register_event_handler('registeruser:validate:password', 'all', [_elgg_services()->passwordGenerator, 'registerUserPasswordValidation']);
89  elgg_register_event_handler('view_vars', 'input/password', [_elgg_services()->passwordGenerator, 'addInputRequirements']);
90 
91  $widgets = ['online_users', 'new_users', 'content_stats', 'banned_users', 'admin_welcome', 'cron_status', 'elgg_blog'];
92  foreach ($widgets as $widget) {
94  'id' => $widget,
95  'name' => elgg_echo("admin:widget:{$widget}"),
96  'description' => elgg_echo("admin:widget:{$widget}:help"),
97  'context' => ['admin'],
98  ]);
99  }
100  }
101 
107  public static function initEarly() {
108  elgg_register_pam_handler(\Elgg\PAM\User\Password::class);
109  }
110 
116  public static function initLate() {
118  }
119 
125  public static function ready() {
126  _elgg_services()->views->cacheConfiguration();
127  }
128 
134  protected static function initWalledGarden() {
135  if (!_elgg_services()->config->walled_garden) {
136  return;
137  }
138 
139  elgg_register_external_file('css', 'elgg.walled_garden', elgg_get_simplecache_url('walled_garden.css'));
140 
141  if (_elgg_services()->config->default_access == ACCESS_PUBLIC) {
142  elgg_set_config('default_access', ACCESS_LOGGED_IN);
143  }
144 
145  if (!elgg_is_logged_in()) {
146  // override the front page
147  elgg_register_route('index', [
148  'path' => '/',
149  'resource' => 'walled_garden',
150  ]);
151  }
152  }
153 }
if($guid===false) $widget
Definition: add.php:31
$widgets
Definition: add_panel.php:30
elgg_register_simplecache_view(string $view_name)
Registers a view to simple cache.
Definition: cache.php:59
elgg_get_simplecache_url(string $view)
Get the URL for the cached view.
Definition: cache.php:78
Contains the system event handlers.
static initEarly()
Initializes the system (contains actions that require to be executed early [priority: 0])
static ready()
Actions performed when the system is ready.
static init()
Initializes the system.
static initLate()
Initializes the system (contains actions that require to be executed after regular priority [priority...
static initWalledGarden()
Initializes the walled garden logic.
Notify the user about his/her new account.
Definition: AddUser.php:12
Send a notification to all (subscribed) site admins that there are unvalidated users.
E-mail the user that their account got banned.
Definition: BanUser.php:12
E-mail about the password change to the user.
Confirm a user e-mail change to the user.
Confirm a user password change to the user.
Notification Event Handler for 'object' 'comment' 'create' action.
Notification Event Handler for 'user' 'user' 'make_admin' action.
Mentions notification handler.
Definition: Mentions.php:13
Notification Event Handler for 'user' 'user' 'remove_admin' action.
E-mail the password reset to the user.
E-mail about the password reset for a user by a site administrator.
Notification Event Handler for 'user' 'user' 'unban' action.
Definition: UnbanUser.php:12
E-mail the user that a site administrator validated their account.
elgg_set_config(string $name, $value)
Set an Elgg configuration value.
elgg_get_config(string $name, $default=null)
Get an Elgg configuration value.
const ACCESS_LOGGED_IN
Definition: constants.php:11
const ACCESS_PUBLIC
Definition: constants.php:12
_elgg_services()
Get the global service provider.
Definition: elgglib.php:343
elgg_register_widget_type(array $options)
Register a widget type.
Definition: widgets.php:64
elgg_register_external_file(string $type, string $name, string $url, string $location='')
Core registration function for external files.
elgg_echo(string $message_key, array $args=[], string $language='')
Elgg language module Functions to manage language and translations.
Definition: languages.php:17
elgg_register_event_handler(string $event, string $type, callable|string $callback, int $priority=500)
Helper functions for event handling.
Definition: events.php:48
elgg_extend_view(string $view, string $view_extension, int $priority=501)
Extends a view with another view.
Definition: views.php:183
elgg_register_ajax_view(string $view)
Register a view to be available for ajax calls.
Definition: views.php:104
elgg_register_notification_event(string $object_type, string $object_subtype, array $actions=[], string $handler=NotificationEventHandler::class)
Register a notification event.
elgg_register_notification_method(string $name)
Register a delivery method for notifications.
elgg_register_route(string $name, array $params=[])
Elgg page handler functions.
Definition: pagehandler.php:27
elgg_register_pam_handler($handler, string $importance='sufficient', string $policy='user')
Elgg Simple PAM library Contains functions for managing authentication.
Definition: pam.php:31
elgg_is_logged_in()
Returns whether or not the user is currently logged in.
Definition: sessions.php:43