Design improvements for importing posts from twitter, facebook and G+

This commit is contained in:
Michael Vogel 2013-12-08 15:00:49 +01:00
parent e564d0e94a
commit 70742b56c2
4 changed files with 109 additions and 72 deletions

View file

@ -247,6 +247,7 @@ function fromgplus_cleantext($text) {
function fromgplus_handleattachments($item, $displaytext) {
$post = "";
$quote = "";
$type = "";
foreach ($item->object->attachments as $attachment) {
switch($attachment->objectType) {
@ -262,7 +263,7 @@ function fromgplus_handleattachments($item, $displaytext) {
break;
case "article":
$post .= "\n\n[bookmark=".$attachment->url."]".fromgplus_html2bbcode($attachment->displayName)."[/bookmark]\n";
$post .= "\n\n[class=type-link][bookmark=".$attachment->url."]".fromgplus_html2bbcode($attachment->displayName)."[/bookmark]\n";
$images = fromgplus_cleanupgoogleproxy($attachment->fullImage, $attachment->image);
//if ($images["preview"] != "")
@ -276,6 +277,8 @@ function fromgplus_handleattachments($item, $displaytext) {
$quote = trim(fromgplus_html2bbcode($attachment->content));
if ($quote != "")
$quote = "\n[quote]".$quote."[/quote]";
$quote .= "[/class]";
break;
case "photo":