Elgg  Version master
set_robots.php
Go to the documentation of this file.
1 <?php
6 $content = get_input('text');
7 
9 
10 if (!$site->setMetadata('robots.txt', $content)) {
11  return elgg_error_response(elgg_echo('save:fail'));
12 }
13 
14 return elgg_ok_response('', elgg_echo('save:success'));
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
$site
Definition: set_robots.php:8
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_get_site_entity()
Get the current site entity.
Definition: entities.php:99
$content
Set robots.txt action.
Definition: set_robots.php:6