23 lines
440 B
PHP
23 lines
440 B
PHP
<?php
|
|
|
|
if(!empty($greeting)) {
|
|
echo $greeting, "\n\n";
|
|
} else {
|
|
echo $level == 'error' ? __('common.whoops').'!' : __('common.hello').',', "\n\n";
|
|
}
|
|
|
|
if(!empty($introLines)) {
|
|
echo implode("\n", $introLines), "\n\n";
|
|
}
|
|
|
|
if(isset($actionText)) {
|
|
echo "{$actionText}: {$actionUrl}", "\n\n";
|
|
}
|
|
|
|
if(!empty($outroLines)) {
|
|
echo implode("\n", $outroLines), "\n\n";
|
|
}
|
|
|
|
echo __('common.regards).', ', "\n";
|
|
echo config('app.name'), "\n";
|