]> git.mxchange.org Git - friendica.git/blobdiff - include/bbcode.php
no more googlegroups
[friendica.git] / include / bbcode.php
index 384fd5ebd90a8aa1b156908143cc5e720705858a..228b75d5abbd711dc26afdfce0492ef300ddcfa9 100644 (file)
@@ -254,12 +254,22 @@ function bb_ShareAttributes($match) {
         if ($matches[1] != "")
                 $profile = $matches[1];
 
+        $posted = "";
+        preg_match("/posted='(.*?)'/ism", $attributes, $matches);
+        if ($matches[1] != "")
+                $posted = $matches[1];
+
+        preg_match('/posted="(.*?)"/ism', $attributes, $matches);
+        if ($matches[1] != "")
+                $posted = $matches[1];
+               $reldate = (($posted) ? " " . relative_date($posted) : ''); 
+
         $headline = '<div class="shared_header">';
 
        if ($avatar != "")
                $headline .= '<img src="'.$avatar.'" height="32" width="32" >';
 
-       $headline .= sprintf(t('<span><a href="%s" target="external-link">%s</a> wrote the following <a href="%s" target="external-link">post</a>:</span>'), $profile, $author, $link);
+       $headline .= sprintf(t('<span><a href="%s" target="external-link">%s</a> wrote the following <a href="%s" target="external-link">post</a>'.$reldate.':</span>'), $profile, $author, $link);
 
         $headline .= "</div>";
 
@@ -310,6 +320,10 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
 
        // remove some newlines before the general conversion
        $Text = preg_replace("/\s?\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","[share$1]$2[/share]",$Text);
+       $Text = preg_replace("/\s?\[quote(.*?)\]\s?(.*?)\s?\[\/quote\]\s?/ism","[quote$1]$2[/quote]",$Text);
+
+       $Text = preg_replace("/\n\[code\]/ism", "[code]", $Text);
+       $Text = preg_replace("/\[\/code\]\n/ism", "[/code]", $Text);
 
        // when the content is meant exporting to other systems then remove the avatar picture since this doesn't really look good on these systems
        if (!$tryoembed)
@@ -324,6 +338,16 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
 
        $Text = trim($Text);
        $Text = str_replace("\r\n","\n", $Text);
+
+       // removing multiplicated newlines
+//     $search = array("\n\n\n", "\n ", " \n", "[/quote]\n\n", "\n[/quote]");
+//     $replace = array("\n\n", "\n", "\n", "[/quote]\n", "[/quote]");
+//     do {
+//             $oldtext = $Text;
+//             $Text = str_replace($search, $replace, $Text);
+//     } while ($oldtext != $Text);
+
+
        $Text = str_replace(array("\r","\n"), array('<br />','<br />'), $Text);
 
        if($preserve_nl)