Elgg  Version 5.1
sidebar_alt.php
Go to the documentation of this file.
1 <?php
8 $sidebar_alt = elgg_extract('sidebar_alt', $vars);
9 if (empty($sidebar_alt)) {
10  return;
11 }
12 
13 echo elgg_format_element('div', ['class' => ['elgg-sidebar-alt', 'elgg-layout-sidebar-alt']], $sidebar_alt);
$sidebar_alt
Second layout sidebar.
Definition: sidebar_alt.php:8
elgg_extract($key, $array, $default=null, bool $strict=true)
Checks for $array[$key] and returns its value if it exists, else returns $default.
Definition: elgglib.php:254
$vars
Definition: theme.php:5
elgg_format_element(string $tag_name, array $attributes=[], string $text= '', array $options=[])
Format an HTML element.
Definition: output.php:145