mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-17 04:15:15 +02:00
Add System::htmlUpdateExit() method to refactor update modules
This commit is contained in:
parent
e89e606b88
commit
5d169a4098
7 changed files with 44 additions and 126 deletions
|
@ -292,6 +292,36 @@ class System
|
|||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Exit method used by asynchronous update modules
|
||||
*
|
||||
* @param string $o
|
||||
*/
|
||||
public static function htmlUpdateExit($o)
|
||||
{
|
||||
if (DI::pConfig()->get(local_user(), "system", "bandwidth_saver")) {
|
||||
$replace = "<br />".DI::l10n()->t("[Embedded content - reload page to view]")."<br />";
|
||||
$pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
|
||||
$o = preg_replace($pattern, $replace, $o);
|
||||
$pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i";
|
||||
$o = preg_replace($pattern, $replace, $o);
|
||||
$pattern = "/<\s*embed[^>]*>(.*?)<\s*\/\s*embed>/i";
|
||||
$o = preg_replace($pattern, $replace, $o);
|
||||
$pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i";
|
||||
$o = preg_replace($pattern, $replace, $o);
|
||||
}
|
||||
|
||||
header("Content-type: text/html");
|
||||
echo "<!DOCTYPE html><html><body>\r\n";
|
||||
// We can remove this hack once Internet Explorer recognises HTML5 natively
|
||||
echo "<section>";
|
||||
// reportedly some versions of MSIE don't handle tabs in XMLHttpRequest documents very well
|
||||
echo str_replace("\t", " ", $o);
|
||||
echo "</section>";
|
||||
echo "</body></html>\r\n";
|
||||
exit();
|
||||
}
|
||||
|
||||
/// @todo Move the following functions from boot.php
|
||||
/*
|
||||
function local_user()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue