use Exception;
use Friendica\DI;
+use Friendica\Network\HTTPException\InternalServerErrorException;
use Friendica\Render\TemplateEngine;
/**
* @param string $template
* @param array $vars
* @return string
+ * @throws InternalServerErrorException
*/
public static function replaceMacros(string $template, array $vars)
{
try {
$output = $t->replaceMacros($template, $vars);
} catch (Exception $e) {
- echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
- exit();
+ DI::logger()->critical($e->getMessage(), ['template' => $template, 'vars' => $vars]);
+ throw new InternalServerErrorException(DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator or check the Friendica log for errors.'));
}
DI::profiler()->saveTimestamp($stamp1, "rendering", System::callstack());
* @param string $subDir Subdirectory (Optional)
*
* @return string template.
- * @throws Exception
+ * @throws InternalServerErrorException
*/
public static function getMarkupTemplate($file, $subDir = '')
{
try {
$template = $t->getTemplateFile($file, $subDir);
} catch (Exception $e) {
- echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
- exit();
+ DI::logger()->critical($e->getMessage(), ['file' => $file, 'subDir' => $subDir]);
+ throw new InternalServerErrorException(DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator or check the Friendica log for errors.'));
}
DI::profiler()->saveTimestamp($stamp1, "file", System::callstack());
* Register template engine class
*
* @param string $class
+ * @throws InternalServerErrorException
*/
public static function registerTemplateEngine($class)
{
$name = $v['name'];
self::$template_engines[$name] = $class;
} else {
- echo "template engine <tt>$class</tt> cannot be registered without a name.\n";
- die();
+ DI::logger()->critical(DI::l10n()->t('template engine cannot be registered without a name.'), ['class' => $class]);
+ throw new InternalServerErrorException(DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator or check the Friendica log for errors.'));
}
}
* or default
*
* @return TemplateEngine Template Engine instance
+ * @throws InternalServerErrorException
*/
public static function getTemplateEngine()
{
}
}
- echo "template engine <tt>$template_engine</tt> is not registered!\n";
- exit();
+ DI::logger()->critical(DI::l10n()->t('template engine is not registered!'), ['template_engine' => $template_engine]);
+ throw new InternalServerErrorException(DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator or check the Friendica log for errors.'));
}
/**
use Friendica\Core\Hook;
use Friendica\DI;
+use Friendica\Network\HTTPException\InternalServerErrorException;
use Friendica\Util\Strings;
/**
$this->smarty = new FriendicaSmarty($this->theme, $this->theme_info);
if (!is_writable(DI::basePath() . '/view/smarty3')) {
- echo "<b>ERROR:</b> folder <tt>view/smarty3/</tt> must be writable by webserver.";
- exit();
+ DI::logger()->critical(DI::l10n()->t('The folder view/smarty3/ must be writable by webserver.'));
+ throw new InternalServerErrorException(DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator or check the Friendica log for errors.'));
}
}