Elgg  Version 5.1
set_maintenance_mode.php
Go to the documentation of this file.
1 <?php
6 $mode = (int) get_input('mode');
7 $message = get_input('message');
8 
10 
11 $result = elgg_save_config('elgg_maintenance_mode', $mode);
12 
13 $result = $result && $site->setMetadata('elgg_maintenance_message', $message);
14 
15 if (!$result) {
16  return elgg_error_response(elgg_echo('save:fail'));
17 }
18 
19 return elgg_ok_response('', elgg_echo('admin:maintenance_mode:saved'));
$mode
Configure site maintenance mode.
elgg_ok_response($content= '', string|array $message= '', string $forward_url=null, int $status_code=ELGG_HTTP_OK)
Prepares a successful response to be returned by a page or an action handler.
elgg_echo(string $message_key, array $args=[], string $language= '')
Elgg language module Functions to manage language and translations.
Definition: languages.php:17
get_input(string $variable, $default=null, bool $filter_result=true)
Parameter input functions.
Definition: input.php:20
elgg_error_response(string|array $message= '', string $forward_url=REFERRER, int $status_code=ELGG_HTTP_BAD_REQUEST)
Prepare an error response to be returned by a page or an action handler.
elgg_save_config(string $name, $value)
Save a configuration setting.
elgg_get_site_entity()
Get the current site entity.
Definition: entities.php:98