Elgg  Version master
complete.php
Go to the documentation of this file.
1 <?php
6 echo elgg_autop(elgg_echo('install:complete:instructions'));
7 
8 $link = elgg_view('output/url', [
9  'text' => elgg_echo('install:complete:gotosite'),
10  'href' => elgg_get_site_url(),
11  'class' => ['elgg-button', 'elgg-button-action'],
12 ]);
13 
14 echo elgg_format_element('div', ['class' => 'elgg-install-nav'], $link);
elgg_echo(string $message_key, array $args=[], string $language= '')
Elgg language module Functions to manage language and translations.
Definition: languages.php:17
elgg_view(string $view, array $vars=[], string $viewtype= '')
Return a parsed view.
Definition: views.php:156
elgg_get_site_url()
Get the URL for the current (or specified) site, ending with "/".
elgg_autop(string $string)
Create paragraphs from text with line spacing.
Definition: output.php:67
elgg_format_element(string $tag_name, array $attributes=[], string $text= '', array $options=[])
Format an HTML element.
Definition: output.php:145
$link
Install completion page.
Definition: complete.php:8