reindent BookmarkPlugin

This commit is contained in:
Evan Prodromou 2010-12-20 13:35:30 -05:00
parent d8de285d4e
commit 15f4e0a9f0
1 changed files with 15 additions and 14 deletions

View File

@ -107,20 +107,20 @@ class BookmarkPlugin extends Plugin
$dir = dirname(__FILE__); $dir = dirname(__FILE__);
switch ($cls) switch ($cls)
{ {
case 'NewbookmarkAction': case 'NewbookmarkAction':
include_once $dir.'/newbookmark.php'; include_once $dir.'/newbookmark.php';
return false;
case 'Notice_bookmark':
include_once $dir.'/'.$cls.'.php';
return false;
case 'BookmarkForm':
case 'DeliciousBackupImporter':
include_once $dir.'/'.strtolower($cls).'.php';
return false; return false;
case 'Notice_bookmark': default:
include_once $dir.'/'.$cls.'.php'; return true;
return false; }
case 'BookmarkForm':
case 'DeliciousBackupImporter':
include_once $dir.'/'.strtolower($cls).'.php';
return false;
default:
return true;
}
} }
/** /**
@ -203,7 +203,8 @@ class BookmarkPlugin extends Plugin
$object->id = $notice->uri; $object->id = $notice->uri;
$object->type = ActivityObject::BOOKMARK; $object->type = ActivityObject::BOOKMARK;
$object->title = $nb->title; $object->title = $nb->title;
$object->summary = $nb->summary; $object->summary = $nb->description;
$object->link = $notice->bestUrl();
// Attributes of the URL // Attributes of the URL