Elgg  Version 2.3
Variables
module.php File Reference

Go to the source code of this file.

Variables

 $type = elgg_extract('type', $vars, false)
 Elgg module element. More...
 
 $title = elgg_extract('title', $vars, '')
 
 $body = elgg_extract('body', $vars, '')
 
 $footer = elgg_extract('footer', $vars, '')
 
 $show_inner = elgg_extract('show_inner', $vars, false)
 
 $attrs
 
if($type$header = elgg_extract('header', $vars)
 
if($footer$contents = $header . $body . $footer
 
 if ( $show_inner)
 

Variable Documentation

◆ $attrs

$attrs
Initial value:
= [
'id' => elgg_extract('id', $vars),
'class' => elgg_extract_class($vars, 'elgg-module'),
]
elgg_extract($key, $array, $default=null, $strict=true)
Checks for $array[$key] and returns its value if it exists, else returns $default.
Definition: elgglib.php:1375
elgg_extract_class(array $array, $existing=[])
Extract class names from an array with key "class", optionally merging into a preexisting set.
Definition: elgglib.php:1396
$vars['entity']

Definition at line 21 of file module.php.

◆ $body

if ( $title) if ( $header !==null) $body = elgg_extract('body', $vars, '')

Definition at line 17 of file module.php.

◆ $contents

if ( $footer) $contents = $header . $body . $footer
Examples
/root/Elgg/engine/lib/views.php.

Definition at line 43 of file module.php.

◆ $footer

$footer = elgg_extract('footer', $vars, '')

Definition at line 18 of file module.php.

◆ $header

if ( $type) $header = elgg_extract('header', $vars)

Definition at line 30 of file module.php.

◆ $show_inner

$show_inner = elgg_extract('show_inner', $vars, false)

Definition at line 19 of file module.php.

◆ $title

$title = elgg_extract('title', $vars, '')

Definition at line 16 of file module.php.

◆ $type

$type = elgg_extract('type', $vars, false)

Elgg module element.

@uses $vars['type'] The type of module (main, info, popup, aside, etc.) @uses $vars['title'] Optional title text (do not pass header with this option) @uses $vars['header'] Optional HTML content of the header @uses $vars['body'] HTML content of the body @uses $vars['footer'] Optional HTML content of the footer @uses $vars['class'] Optional additional class for module @uses $vars['id'] Optional id for module @uses $vars['show_inner'] Optional flag to leave out inner div (default: false)

Definition at line 15 of file module.php.

◆ if

if($show_inner) (   $show_inner)

Definition at line 44 of file module.php.