]> git.mxchange.org Git - friendica.git/blob - mod/update_display.php
Merge pull request #7988 from friendica/MrPetovan-notice
[friendica.git] / mod / update_display.php
1 <?php
2 /**
3  * @file mod/update_display.php
4  * See update_profile.php for documentation
5  */
6
7 use Friendica\App;
8 use Friendica\Core\L10n;
9 use Friendica\Core\PConfig;
10
11 require_once "mod/display.php";
12
13 function update_display_content(App $a)
14 {
15         $profile_uid = intval($_GET["p"]);
16
17         header("Content-type: text/html");
18         echo "<!DOCTYPE html><html><body>\r\n";
19         echo "<section>";
20
21         $text = display_content($a, true, $profile_uid);
22
23         if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
24                 $replace = "<br />" . L10n::t("[Embedded content - reload page to view]") . "<br />";
25                 $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
26                 $text = preg_replace($pattern, $replace, $text);
27                 $pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i";
28                 $text = preg_replace($pattern, $replace, $text);
29                 $pattern = "/<\s*embed[^>]*>(.*?)<\s*\/\s*embed>/i";
30                 $text = preg_replace($pattern, $replace, $text);
31                 $pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i";
32                 $text = preg_replace($pattern, $replace, $text);
33         }
34
35         echo str_replace("\t", "       ", $text);
36         echo "</section>";
37         echo "</body></html>\r\n";
38         exit();
39 }