aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/placeholder_text.php
blob: 2fc3d3d9b058b1f12ff4875fd7c9e2289c7c6204 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
$text = __('placeholder');
if (isset($message)) {
    $text = $message;
} elseif (isset($count)) {
    if ($count == 0)
        $text = __('placeholder.noMoreItems');
    else
        $text = sprintf(__('placeholder.moreItems'), $count);
}
?>
<p class="placeholder"><?= $text ?></p>