Elgg  Version master
content.php
Go to the documentation of this file.
1 <?php
9 $content = elgg_extract('content', $vars, '');
10 if ($content === false) {
11  return;
12 }
13 
14 $annotation = elgg_extract('annotation', $vars);
15 if ($content === '' && $annotation instanceof ElggAnnotation) {
16  $content = $annotation->value;
17 }
18 
20  return;
21 }
22 
23 echo elgg_format_element('div', ['class' => 'elgg-listing-summary-content'], $content);
if($content===false) $annotation
Definition: content.php:14
Entity Annotation.
elgg_is_empty($value)
Check if a value isn&#39;t empty, but allow 0 and &#39;0&#39;.
Definition: input.php:176
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
$content
Outputs annotation summary content.
Definition: content.php:9
$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