Elgg  Version master
error.php
Go to the documentation of this file.
1 <?php
14 if (elgg_get_context() == 'admin' && elgg_is_admin_logged_in()) {
15  echo elgg_view('page/admin', $vars);
16 } else {
17  echo elgg_view('page/default', $vars);
18 }
elgg_is_admin_logged_in()
Returns whether or not the viewer is currently logged in and an admin user.
Definition: sessions.php:52
$vars['filter']
Definition: error.php:17
elgg_get_context()
Get the current context.
Definition: context.php:41
elgg_view(string $view, array $vars=[], string $viewtype= '')
Return a parsed view.
Definition: views.php:156