Elgg  Version master
creator.php
Go to the documentation of this file.
1 <?php
10 $owner = elgg_extract('entity', $vars)->getOwnerEntity();
11 if ($owner) {
12  $owner_name = htmlspecialchars($owner->getDisplayName() ?? '', ENT_NOQUOTES, 'UTF-8');
13  echo elgg_format_element('dc:creator', [], $owner_name);
14 }
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
$owner
Creator view.
Definition: creator.php:10
$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